| Commit message (Expand) | Author | Age | Files | Lines |
... | |
* | Fix typo in previous | tb | 2023-08-15 | 1 | -2/+2 |
* | Avoid undefined behavior with memcmp(NULL, x, 0) in ASN1_STRING_cmp() | tb | 2023-08-15 | 1 | -4/+6 |
* | SHA-3 is not a symmetric cipher. | schwarze | 2023-08-15 | 1 | -3/+3 |
* | Import the EVP_chacha20(3) manual page from the OpenSSL 1.1 branch, | schwarze | 2023-08-15 | 4 | -14/+102 |
* | Clean up alignment handling. | jsing | 2023-08-15 | 2 | -57/+67 |
* | Use MD5_LONG instead of unsigned int for consistency. | jsing | 2023-08-15 | 1 | -3/+3 |
* | Condition only on #ifdef MD5_ASM. | jsing | 2023-08-15 | 1 | -15/+5 |
* | Inline INIT_DATA_* defines. | jsing | 2023-08-14 | 1 | -10/+7 |
* | style(9) | jsing | 2023-08-14 | 1 | -6/+6 |
* | Below SEE ALSO, point to all pages documenting the evp.h sub-library, and | schwarze | 2023-08-14 | 1 | -11/+56 |
* | import EVP_sha3_224(3) from the OpenSSL 1.1 branch, which is still under | schwarze | 2023-08-14 | 3 | -3/+97 |
* | fix whitespace | tb | 2023-08-13 | 1 | -14/+13 |
* | document return values of the control function in EVP_MD_meth_set_ctrl(3) | schwarze | 2023-08-12 | 1 | -5/+15 |
* | 1. Tweak the descriptions of EVP_MD_CTX_ctrl(3), EVP_MD_CTX_set_flags(3), | schwarze | 2023-08-12 | 1 | -52/+107 |
* | Remove a blatant lie about DSA_dup_DH | tb | 2023-08-12 | 1 | -6/+2 |
* | The int_ prefix also leaves the ec_ameth mess | tb | 2023-08-12 | 1 | -5/+5 |
* | RSA's _free and _size also lose their int_ prefix | tb | 2023-08-12 | 1 | -7/+7 |
* | Drop silly int_ prefix from _free() and _size() | tb | 2023-08-12 | 2 | -10/+10 |
* | Free {priv,pub}_key before assigning to it | tb | 2023-08-12 | 2 | -2/+7 |
* | Readability tweak for key parameters in DSA | tb | 2023-08-12 | 1 | -2/+2 |
* | Simplify and unify missing_parameters() for DH and DSA | tb | 2023-08-12 | 2 | -11/+8 |
* | Convert {DH,DSA}_new_method() to using calloc() | tb | 2023-08-12 | 2 | -83/+54 |
* | Merge various improvements from the OpenSSL 1.1 branch, | schwarze | 2023-08-11 | 1 | -13/+148 |
* | Stop including md32_common.h. | jsing | 2023-08-11 | 1 | -15/+1 |
* | Demacro sha256. | jsing | 2023-08-11 | 1 | -49/+114 |
* | Improve variable names in {dh,dsa}_{pub,priv}_{de,en}code() | tb | 2023-08-11 | 2 | -114/+114 |
* | Use params{,_len} in {dh,dsa}_params_{en,de}code() | tb | 2023-08-11 | 2 | -10/+10 |
* | Use key/key_len in old_dsa_priv_{en,de}code() | tb | 2023-08-11 | 1 | -5/+5 |
* | Add back an empty line that I didn't really want to remove | tb | 2023-08-11 | 1 | -1/+2 |
* | Align dh and dsa decoding functions with encoding | tb | 2023-08-11 | 2 | -142/+173 |
* | Rename env_md{,_ctx}_st to evp_md{,_ctx}_st | tb | 2023-08-11 | 2 | -6/+6 |
* | Use EVP_MD in HKDF() and HKDF_extract() prototypes | tb | 2023-08-11 | 1 | -5/+5 |
* | Move EC_KEY and EC_KEY_METHOD typedefs to ossl_typ.h | tb | 2023-08-11 | 2 | -5/+5 |
* | Convert {dh,dsa}_{pub,priv}_encode() to single exit | tb | 2023-08-10 | 2 | -84/+94 |
* | Add the missing ".Nm X509_STORE_CTX_check_issued_fn" to the NAME section | schwarze | 2023-08-10 | 1 | -2/+4 |
* | Clean up {dh,dsa}_pub_encode() | tb | 2023-08-10 | 2 | -46/+54 |
* | Fix a leak in rsa_pub_encode() | tb | 2023-08-10 | 1 | -12/+19 |
* | In x509_vfy.h rev. 1.60 and rev. 1.62 (April 2023), tb@ provided | schwarze | 2023-08-10 | 1 | -26/+51 |
* | Remove now unnecessary 'do {} while (0);' and move variable declaration. | jsing | 2023-08-10 | 1 | -5/+2 |
* | Expand HASH_MAKE_STRING. | jsing | 2023-08-10 | 1 | -13/+13 |
* | Remove MD32_XARRAY remnants. | jsing | 2023-08-10 | 1 | -4/+1 |
* | Reorder functions. | jsing | 2023-08-10 | 1 | -119/+119 |
* | Implement MD5_{Update,Transform,Final}() directly in md5.c. | jsing | 2023-08-10 | 1 | -1/+103 |
* | Tidy includes. | jsing | 2023-08-10 | 2 | -8/+3 |
* | Mop up the last MD32_XARRAY. | jsing | 2023-08-10 | 1 | -197/+187 |
* | Inline the remaining 10 lines from rmdconst.h. | jsing | 2023-08-10 | 2 | -75/+12 |
* | Inline X variables definitions. | jsing | 2023-08-10 | 2 | -345/+175 |
* | Inline shift values. | jsing | 2023-08-10 | 2 | -330/+170 |
* | Apply some more style(9). | jsing | 2023-08-10 | 1 | -170/+171 |
* | Various fixes in {dh,dsa}_priv_encode() | tb | 2023-08-10 | 2 | -40/+48 |