summaryrefslogtreecommitdiff
path: root/src/lib/libssl/ssl_transcript.c (unfollow)
Commit message (Collapse)AuthorFilesLines
2023-03-02Simplify the ct Makefile slightlytb1-7/+3
2023-03-02Clean up the x509 regress make file a littletb1-27/+10
2023-03-02Remove a few more unnecessary line continuationstb1-4/+4
2023-03-02Nitpick error checks of BN_get_mem_data()tb1-15/+27
BN_get_mem_data() returns a non-positive long on error, so assigning it to a size_t and displaying that in error messages is incorrect.
2023-03-02Some more Makefile cosmeticstb1-10/+15
The verbose evp test actually depends on the evptest binary. Use consistent spacing and indentation.
2023-03-02The evp_ecx_test no longer needs static linkingtb1-3/+1
2023-03-02Hide the hexdumps behind a verbose flags. Should have been part oftb1-26/+45
the previous commit.
2023-03-02Simplify evp test Makefile.tb1-18/+5
Make evptest silent by default: these pages of hexdumps are useless noise. Add a verbose target for debugging.
2023-03-02evp_pkey_check: make this test silent on successtb1-18/+13
2023-03-02Remove a few unnecessary line continuationstb1-7/+7
2023-03-01Comment out glob for JSON webcrypto tests for nowtb1-2/+3
Allows test to pass with the old version of the wycheproof-testvectors package.
2023-03-01Link evp/cipher_method_lib.c to the buildtb1-1/+2
ok jsing
2023-03-01Convert EVP_CIPHER_meth_dup() to using calloc()tb1-3/+2
There is no reason for this to call EVP_CIPHER_meth_new(), as the flags will be copied a line later anyway. Simplify this. Requested by jsing
2023-03-01Make cipher_method_lib.c compile with LibreSSLtb1-15/+29
OPENSSL_zalloc() -> calloc(), OPENSSL_free() -> free() and a few assorted cosmetic tweaks to match our style better. ok jsing
2023-03-01Add EVP_CIPHER_meth_* prototypes to evp.htb1-1/+25
As usual, this will be guarded by LIBRESSL_INTERNAL || LIBRESSL_NEXT_API until the next bump. ok jsing
2023-03-01Make the cleanup() method return an int againtb4-7/+12
This partially reverts jsing's OpenBSD commit b8185953, but without adding back the error check that potentialy results in dumb leaks. No cleanup() method in the wild returns anything but 1. Since that's the signature in the EVP_CIPHER_meth_* API, we have no choice... ok jsing
2023-03-01Fix line wrapping of function pointer argumentstb1-15/+8
ok jsing
2023-03-01First KNF approximation as per knfmt(1)tb1-60/+72
ok jsing
2023-03-01Drop the EVP_CIPHER_METH_get_* functionstb1-42/+1
Nothing interesting uses them. There's a Debian SSH-1 module and corresponding ncrack bits. That's not reason enough to have this garbage. ok jsing
2023-03-01Add RCS tagtb1-0/+1
2023-03-01Revert OpenSSL commit aa6bb135tb1-5/+54
This reinstates the original license on this file. Don't bother bumping the copyright year. Nothing interesting has happened in here since the initial commit. (There was one interesting commit though: "Don't care openssl_zmalloc()", which is interesting due to the lack of care, not because it's copyright worthy) ok jsing