| Commit message (Expand) | Author | Age | Files | Lines |
... | |
* | Inline and disable BIO_set(). | jsing | 2024-02-16 | 1 | -21/+19 |
* | Use 'bio' more consistently for function arguments. | jsing | 2024-02-16 | 1 | -58/+61 |
* | Make it explicit that the EC_KEY setters don't check things | tb | 2024-02-16 | 1 | -2/+6 |
* | BIO_dump*() avoid signed integer overflow | tb | 2024-02-15 | 1 | -1/+10 |
* | Document a portability caveat about GeneralizedTime and UTCTime | job | 2024-02-13 | 1 | -2/+9 |
* | bio_dump: add a test that prints all values of a single byte | tb | 2024-02-09 | 1 | -1/+59 |
* | Remove a useless EVP_MD_CTX_init() call | tb | 2024-02-09 | 1 | -2/+1 |
* | Cope with recent ctype.h prefix changes. | anton | 2024-02-05 | 1 | -5/+5 |
* | More missing void | tb | 2024-02-04 | 1 | -3/+3 |
* | Of course libssl also has a few missing void | tb | 2024-02-04 | 2 | -4/+4 |
* | Zap a useless comment followed by a stray semicolon | tb | 2024-02-04 | 1 | -2/+1 |
* | Fix asn1_integer_null_data_test() | tb | 2024-02-04 | 1 | -2/+2 |
* | Rework the exit path of tls13_handshake_recv_action() | tb | 2024-02-03 | 1 | -12/+14 |
* | Remove last peeking at TLS1_FLAGS_SKIP_CERT_VERIFY | tb | 2024-02-03 | 1 | -7/+1 |
* | Zap a trailing blank that snuck into ssl3_get_client_hello() | tb | 2024-02-03 | 1 | -2/+2 |
* | Remove GOST and STREEBOG support from libssl. | beck | 2024-02-03 | 21 | -871/+148 |
* | Ignore EVP_MD_CTX_reset() return value | tb | 2024-02-02 | 1 | -6/+4 |
* | Ignore EVP_CIPHER_CTX_reset() return value, it can't fail | tb | 2024-02-02 | 1 | -2/+2 |
* | Reimplement BIO_dump_indent() with CBS/CBB and BIO_printf() | tb | 2024-02-02 | 1 | -64/+115 |
* | bio_dump: fix indent | tb | 2024-02-02 | 1 | -32/+32 |
* | bio_dump: add one more testcase | tb | 2024-02-02 | 1 | -2/+36 |
* | Add regress coverage for BIO_dump() | tb | 2024-02-02 | 2 | -1/+745 |
* | Fix the verifier to use the trust store | beck | 2024-02-01 | 1 | -1/+13 |
* | Inline EVP_PBE_find() in its last two callers | tb | 2024-02-01 | 1 | -140/+69 |
* | Prepare to remove the _cb() and _fp() versions of BIO_dump() | tb | 2024-02-01 | 1 | -33/+30 |
* | Merge OBJ_NAME_do_all*(3) into EVP_CIPHER_do_all(3) | tb | 2024-01-31 | 5 | -63/+96 |
* | Remove now unnecessary NULL check before EVP_CIPHER_CTX_cleanup() | tb | 2024-01-30 | 1 | -3/+2 |
* | Make EVP_{CIPHER,MD}_CTX_{cleanup,reset}() NULL-safe | tb | 2024-01-30 | 2 | -3/+8 |
* | Restore SSL_shutdown() two step sequence. | jsing | 2024-01-30 | 1 | -1/+3 |
* | Add a shutdown sequence regress test. | jsing | 2024-01-30 | 1 | -3/+133 |
* | Add id-ct-rpkiSignedPrefixList NID | job | 2024-01-29 | 1 | -0/+1 |
* | Add id-ct-rpkiSignedPrefixList OID | job | 2024-01-29 | 1 | -0/+1 |
* | Curious to see if explicitly ignoring the return value appeases Coverity | tb | 2024-01-29 | 1 | -2/+2 |
* | The KNF script didn't grok LHASH_OF(), STACK_OF() | tb | 2024-01-28 | 1 | -9/+9 |
* | Avoid calling EVP_CIPHER_CTX_reset() on a NULL ctx | tb | 2024-01-28 | 1 | -2/+3 |
* | Clean up EVP_CIPHER_CTX_init() usage in cmac.c | joshua | 2024-01-28 | 1 | -25/+33 |
* | Clean up EVP_MD_CTX_{init,cleanup}() usage in ASN1_item_verify() | joshua | 2024-01-28 | 1 | -9/+10 |
* | Dynamic EVP_PKEY_METHODs are a thing from the past | tb | 2024-01-27 | 1 | -3/+1 |
* | Add a few aliases for ECDSA and DSA for security/xca | tb | 2024-01-27 | 1 | -1/+143 |
* | Use ret instead of rv in a few keyivgen functions | tb | 2024-01-27 | 1 | -11/+11 |
* | Fold keyivgen functions into evp_pbe.c | tb | 2024-01-27 | 5 | -599/+387 |
* | Make some comments and some whitespace less ugly | tb | 2024-01-27 | 1 | -13/+14 |
* | Whitespace tweak | tb | 2024-01-27 | 1 | -2/+4 |
* | Throw PKCS5_PBE_add() into the trash bin at the end of evp_pbe.c | tb | 2024-01-27 | 2 | -10/+7 |
* | Mark the functions at the end of this file for removal | tb | 2024-01-27 | 1 | -1/+5 |
* | Support HMAC with SHA-3 as a PBE PRF | tb | 2024-01-27 | 1 | -1/+21 |
* | Support HMAC with truncated SHA-2 as a PBE PRF | tb | 2024-01-27 | 1 | -1/+11 |
* | Teach OBJ_find_sigid_{,by_}algs(3) about ECDSA with SHA-3 | tb | 2024-01-27 | 1 | -1/+21 |
* | Enable for TLSv1.3 now that shutdown behaviour matches the legacy stack. | jsing | 2024-01-27 | 1 | -3/+1 |
* | Rework tls13_legacy_shutdown() to match the legacy stack behaviour. | jsing | 2024-01-27 | 1 | -18/+19 |