| Commit message (Expand) | Author | Files | Lines |
2022-05-05 | Simplify: freezero() is NULL safe; assign + test in one go, as usual. | tb | 1 | -11/+5 |
2022-05-05 | Avoid malloc(0) in EVP_PKEY_CTX_set1_hkdf_key() | tb | 1 | -2/+2 |
2022-05-05 | Securely wipe the entire HKDF_PKEY_CTX instead of only taking care of | tb | 1 | -5/+3 |
2022-05-05 | Use size_t for ASN.1 lengths. | jsing | 4 | -16/+20 |
2022-05-05 | Switch wycheproof.go to using the EVP HKDF API. | tb | 1 | -6/+67 |
2022-05-05 | Fix HMAC() with NULL key | tb | 1 | -2/+7 |
2022-05-05 | Fix argument order in HKDF and HKDF_extract(). | tb | 1 | -5/+5 |
2022-05-05 | Add hkdf_pkey_meth to the standard_methods[] | tb | 1 | -1/+3 |
2022-05-05 | Link kdf/ to the build | tb | 1 | -1/+7 |
2022-05-05 | Provide EVP_PKEY_HKDF alias for NID_hkdf | tb | 1 | -1/+2 |
2022-05-05 | Provide KDFerr() and KDFerror() macros | tb | 1 | -1/+4 |
2022-05-05 | Provide versions of EVP_PKEY_CTX_{str,hex}2ctrl() for internal use. | tb | 2 | -2/+38 |
2022-05-05 | Ditch #defines for tls1_prf and scrypt. Drop unused errors and massage | tb | 2 | -95/+8 |
2022-05-05 | Translate from OpenSSL's HKDF API to BoringSSL API. | tb | 1 | -8/+7 |
2022-05-05 | Remove function codes from errors, i.e., KDFerr(A, B) -> KDFerror(B) | tb | 1 | -5/+5 |
2022-05-05 | Fix typo in previous. | tb | 1 | -2/+2 |
2022-05-05 | Inline OPENSSL_memdup() using malloc() + memcpy() | tb | 1 | -3/+5 |
2022-05-05 | Translate OPENSSL_{cleanse,clear_free,free,zalloc}() to libc API. | tb | 1 | -11/+11 |
2022-05-05 | Adjust includes for LibreSSL | tb | 1 | -4/+7 |
2022-05-05 | Use C99 initializres for hkdf_pkey_meth | tb | 1 | -26/+10 |
2022-05-05 | Remove OpenSSL versions of HKDF*(). | tb | 1 | -117/+1 |
2022-05-05 | Fix includes of the removed kdferr.h | tb | 2 | -4/+3 |
2022-05-05 | Add NID for HKDF | tb | 2 | -0/+4 |
2022-05-04 | remove accidentally duplicated line | tb | 1 | -2/+1 |
2022-05-04 | Whitespace nit (knfmt(1) agrees after inserting an empty line after the | tb | 1 | -4/+5 |
2022-05-04 | KNF according to knfmt(1) | tb | 2 | -275/+288 |
2022-05-04 | Add RCS tags | tb | 3 | -0/+3 |
2022-05-04 | Restore copyright years to 2016-2018 as they were before the previous | tb | 2 | -2/+2 |
2022-05-04 | Reinstate the licenses that were replaced with license stubs in | tb | 2 | -12/+100 |
2022-05-04 | Bump copyright years to 2016-2018 as it was before the previous commit. | tb | 1 | -1/+1 |
2022-05-04 | Reinstate the license that was replaced with a stub in OpenSSL commit | tb | 1 | -5/+49 |
2022-05-04 | Inline kdferr.h at the end of kdf.h | tb | 2 | -55/+37 |
2022-05-04 | Rename hkdf.c to hkdf_evp.c to avoid a name clash with hkdf/hkdf.c | tb | 1 | -0/+0 |
2022-05-04 | Import HKDF code from OpenSSL 1.1.1o | tb | 4 | -0/+571 |
2022-05-04 | Rewrite asn1_collect() and asn1_find_end() with CBS. | jsing | 1 | -77/+80 |
2022-05-04 | Avoid special handling of definite length before calling asn1_find_end(). | jsing | 1 | -10/+4 |
2022-05-04 | Change asn1_check_tag_cbs() out_len from long to size_t. | jsing | 1 | -4/+10 |
2022-04-28 | Add tests that decode sequences into ASN.1 strings. | jsing | 1 | -1/+97 |
2022-04-28 | Rewrite asn1_check_tlen() using CBS. | jsing | 3 | -63/+113 |
2022-04-28 | Refactor ASN1_TIME_adj_internal() | tb | 1 | -84/+82 |
2022-04-28 | Fix comparison in openssl(1) pkcs12 | inoguchi | 1 | -3/+3 |
2022-04-28 | Compare pointer value with NULL in openssl(1) pkcs12 | inoguchi | 1 | -31/+31 |
2022-04-27 | Decode via c2i_ASN1_INTEGER_cbs() from asn1_ex_c2i(). | jsing | 2 | -5/+5 |
2022-04-27 | Ensure we clear the error stack before running tests that print errors. | jsing | 2 | -2/+10 |
2022-04-27 | Enable ASN.1 INTEGER tests with invalid lengths/encodings. | jsing | 1 | -3/+1 |
2022-04-27 | Rewrite c2i_ASN1_INTEGER() using CBS. | jsing | 1 | -84/+129 |
2022-04-27 | Remove the ASN.1 decoder tag/length cache (TLC). | jsing | 1 | -90/+37 |
2022-04-27 | ASN1_{,const_}check_infinite_end(3) were removed in the last major bump, | tb | 1 | -5/+2 |
2022-04-26 | Decode via c2i_ASN1_BIT_STRING_cbs() from asn1_ex_c2i(). | jsing | 3 | -9/+14 |
2022-04-23 | Rewrite c2i_ASN1_BIT_STRING() using CBS. | jsing | 1 | -44/+83 |