Commit message (Collapse) | Author | Files | Lines | ||
---|---|---|---|---|---|
2024-07-09 | Unwrap a few more lines | tb | 1 | -9/+5 | |
2024-07-09 | Unwrap a couple of lines | tb | 1 | -5/+3 | |
2024-07-09 | Align math with t1_enc.c | tb | 1 | -6/+8 | |
suggested by jsing on review | |||||
2024-07-09 | Minor cosmetics in pkey_tls1_prf_derive() | tb | 1 | -5/+3 | |
noticed by jsing on review | |||||
2024-07-09 | Replace explicit_bzero() plus free() with freezero() | tb | 1 | -3/+2 | |
This is simpler, if slightly more expensive | |||||
2024-07-09 | Improve test coverage for TLS1-PRF | tb | 1 | -4/+177 | |
This is basically a copy of the libssl unit tests, moved to libcrypto to avoid starting the infection of libssl with this particular piece of EVP garbage. | |||||
2024-07-09 | Add a minimal regress test for TLS1-PRF | tb | 1 | -1/+96 | |
2024-07-09 | Shuffle things into a more sensible order | tb | 1 | -63/+58 | |
no functional change | |||||
2024-07-09 | Use better order in EVP_PKEY_CTRL_TLS_SECRET | tb | 1 | -6/+5 | |
Also avoid an unnecessary NULL check. | |||||
2024-07-09 | Add tls1_prf_pkey_meth to pkey_methods | tb | 1 | -1/+3 | |
ok jsing | |||||
2024-07-09 | Make a NULL check explicit | tb | 1 | -2/+2 | |
2024-07-09 | Zap or align some ugly comments | tb | 1 | -4/+3 | |
2024-07-09 | Test & assign once more | tb | 1 | -4/+4 | |
2024-07-09 | sec_len -> secret_len | tb | 1 | -3/+3 | |
2024-07-09 | Test and assign in tls1_prf_P_hash() | tb | 1 | -5/+8 | |
2024-07-09 | Fix whitespace around '/' | tb | 1 | -4/+4 | |
2024-07-09 | Invert logic in tls1_prf_alg() | tb | 1 | -22/+22 | |
2024-07-09 | olen -> out_len | tb | 1 | -15/+15 | |
2024-07-09 | Add a few empty lines | tb | 1 | -1/+7 | |
2024-07-09 | seedlen -> seed_len | tb | 1 | -10/+10 | |
2024-07-09 | seclen -> secret_len | tb | 1 | -7/+7 | |
2024-07-09 | slen -> secret_len | tb | 1 | -7/+8 | |
2024-07-09 | sec -> secret | tb | 1 | -17/+17 | |
2024-07-09 | Replace local typedef with spelling out the struct name | tb | 1 | -8/+8 | |
2024-07-09 | Remove a few useless comments | tb | 1 | -6/+1 | |
2024-07-09 | Apply a knfmt(8) sledgehammer | tb | 1 | -226/+236 | |
2024-07-09 | Add an RCS tag | tb | 1 | -1/+1 | |
2024-07-09 | Replace license stub with full license | tb | 1 | -5/+55 | |
This reverts to the license added in OpenSSL's initial import of this file in commit 1eff3485b63f84956b5f212aa4d853783bf6c8b5 | |||||
2024-07-09 | link tls1_prf.c to build | tb | 1 | -1/+2 | |
ok jsing | |||||
2024-07-09 | Replace a malloc() call with calloc() | tb | 1 | -1/+1 | |
2024-07-09 | Replace an ossl_assert() with an error check | tb | 1 | -2/+1 | |
2024-07-09 | Use C99 initializers for tls1_prf_pkey_meth() | tb | 1 | -19/+23 | |
2024-07-09 | Inline an instance of OPENSSL_memdup() | tb | 1 | -2/+11 | |
2024-07-09 | Tidy up includes | tb | 1 | -3/+7 | |
2024-07-09 | OPENSSL_free() -> free() | tb | 1 | -1/+1 | |
2024-07-09 | OPENSSL_cleanse() -> explicit_bzero() | tb | 1 | -3/+3 | |
2024-07-09 | OPENSSL_clear_free() -> freezero() | tb | 1 | -4/+4 | |
2024-07-09 | OPENSSL_malloc() -> malloc() | tb | 1 | -1/+1 | |
2024-07-09 | Spell OPENSSL_zalloc() correctly as calloc() | tb | 1 | -1/+1 | |
2024-07-09 | Mechanically replace KDFerr() with KDFerror() | tb | 1 | -8/+8 | |