diff options
author | vnugent <public@vaughnnugent.com> | 2024-08-06 20:54:03 -0400 |
---|---|---|
committer | vnugent <public@vaughnnugent.com> | 2024-08-06 20:54:03 -0400 |
commit | 942aed8a4e7c173a2c9423829c2b38087cbd49e4 (patch) | |
tree | 90ccef1e5edf4d48f36736dfa8c0973bfed106d8 /src | |
parent | 3b97f84fd0477eafcd6567eb8597b213e4136664 (diff) |
chore: update changelog and mbedtls headers
Diffstat (limited to 'src')
-rw-r--r-- | src/providers/openssl.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/providers/openssl.c b/src/providers/openssl.c index 90f2fa9..c2933fb 100644 --- a/src/providers/openssl.c +++ b/src/providers/openssl.c @@ -275,7 +275,7 @@ #define _IMPL_CHACHA20_CRYPT _ossl_chacha20_crypt - _IMPLSTB cstatus_t _ossl_chacha20_cipher_core( + _IMPLSTB cstatus_t _ossl_cipher_core( const EVP_CIPHER* cipher, cspan_t key, cspan_t iv, @@ -388,7 +388,7 @@ goto Cleanup; } - result = _ossl_chacha20_cipher_core( + result = _ossl_cipher_core( cipher, keySpan, nonceSpan, |