Commit message (Collapse) | Author | Files | Lines | ||
---|---|---|---|---|---|
2022-07-16 | Revert previous. The added includes were already there. Duh. | tb | 1 | -4/+1 | |
2022-07-15 | Expand the comment explaining the for loop with bn_lucas_step() a bit. | tb | 1 | -3/+3 | |
2022-07-15 | Comment for factorization of n - 1 = k * 2^s in bn_miller_rabin_base_2() | tb | 1 | -1/+2 | |
2022-07-15 | Rename is_perfect_square to out_perfect in prototype to match | tb | 1 | -2/+2 | |
the code in bn_isqrt.c. | |||||
2022-07-14 | Zap trailing whitespace | tb | 1 | -4/+4 | |
2022-07-14 | Suppress output of the deprecated -tls1 option in usage() and help | tb | 1 | -3/+2 | |
output. The option wasn't documented in the manpage. pointed out by jsing | |||||
2022-07-14 | Switch to using TLS_client_method() | tb | 1 | -2/+2 | |
Apparently, TLSv1_client_method() is used for historical reasons. This behavior is no longer helpful if we want to know what ciphers a TLS connection could use. This could change again after further investigation of what the behavior should be... ok beck jsing | |||||
2022-07-14 | Only run the client connection test with supported ciphers. Avoids test | tb | 1 | -2/+2 | |
breakage also noted by anton. | |||||
2022-07-14 | Document openssl ciphers -s | tb | 1 | -3/+5 | |
ok beck jsing | |||||
2022-07-14 | Add -s option to openssl ciphers | tb | 1 | -4/+20 | |
With this option, the command only shows the ciphers supported by the SSL method. ok beck jsing | |||||
2022-07-13 | add .Xr links to SSL_CTX_set_security_level(3) | schwarze | 5 | -15/+20 | |
2022-07-13 | add a few .Xr links to new manual pages | schwarze | 11 | -24/+36 | |
2022-07-13 | In dsa.h rev. 1.34 (14 Jan 2022), tb@ provided DSA_bits(3). | schwarze | 1 | -10/+51 | |
Document it from scratch. While here, merge a few details from the OpenSSL 1.1.1 branch, which is still under a free license, into the documentation of DSA_size(3). | |||||
2022-07-13 | In x509_vfy.h rev. 1.54, tb@ provided X509_VERIFY_PARAM_get_time(3) | schwarze | 1 | -3/+44 | |
and X509_VERIFY_PARAM_set_auth_level(3). Document them. For the latter, i included a few sentences from the OpenSSL 1.1.1 branch, which is still under a free license. | |||||
2022-07-13 | link three new manual pages to the build | schwarze | 1 | -1/+4 | |
2022-07-13 | Start documenting our new pet octopus, SSL_CTX_set_security_level(3). | schwarze | 2 | -1/+161 | |
Or should we call it a centipede? Feedback and OK on a previous version from jsing@ and from our chief myriapodologist, tb@. | |||||
2022-07-13 | Cast int64_t to uint64_t before negating. | jsing | 1 | -3/+7 | |
Avoid undefined behaviour/integer overflow by casting an int64_t to uint64_t before negating. Fixes oss-fuzz #49043 ok tb@ | |||||
2022-07-13 | Write documentation for EVP_PKEY_check(3), EVP_PKEY_public_check(3), | schwarze | 5 | -44/+504 | |
EVP_PKEY_param_check(3), and EVP_PKEY_security_bits(3) from scratch. Move the documentation of EVP_PKEY_size(3) and EVP_PKEY_bits(3) to the new manual page EVP_PKEY_size(3). Merge the documentation of the related function pointers from the OpenSSL 1.1.1 branch, which is still under a free license. OK tb@ on the new page EVP_PKEY_size(3). | |||||
2022-07-13 | Simplify computation of max_pub_key = dh->p - 1. | tb | 1 | -4/+2 | |
ok jsing |