diff options
author | Pauli <pauli@openssl.org> | 2023-06-22 01:48:49 +0200 |
---|---|---|
committer | Pauli <pauli@openssl.org> | 2023-07-01 13:18:25 +0200 |
commit | 6be83ac172aac93b49ae0b847fd5ac9de6ab3ff5 (patch) | |
tree | 87100def56be88bd30b7ad3d74ab9959c9258d7a /include/crypto/evp.h | |
parent | x509: update to structure based atomics (diff) | |
download | openssl-6be83ac172aac93b49ae0b847fd5ac9de6ab3ff5.tar.xz openssl-6be83ac172aac93b49ae0b847fd5ac9de6ab3ff5.zip |
evp: update to structure based atomics
Reviewed-by: Tomas Mraz <tomas@openssl.org>
Reviewed-by: Matt Caswell <matt@openssl.org>
(Merged from https://github.com/openssl/openssl/pull/21260)
Diffstat (limited to 'include/crypto/evp.h')
-rw-r--r-- | include/crypto/evp.h | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/include/crypto/evp.h b/include/crypto/evp.h index 30c5aa2b1d..76ccacfd8d 100644 --- a/include/crypto/evp.h +++ b/include/crypto/evp.h @@ -204,7 +204,6 @@ struct evp_mac_st { const char *description; CRYPTO_REF_COUNT refcnt; - CRYPTO_RWLOCK *lock; OSSL_FUNC_mac_newctx_fn *newctx; OSSL_FUNC_mac_dupctx_fn *dupctx; @@ -226,7 +225,6 @@ struct evp_kdf_st { char *type_name; const char *description; CRYPTO_REF_COUNT refcnt; - CRYPTO_RWLOCK *lock; OSSL_FUNC_kdf_newctx_fn *newctx; OSSL_FUNC_kdf_dupctx_fn *dupctx; @@ -271,7 +269,6 @@ struct evp_md_st { const char *description; OSSL_PROVIDER *prov; CRYPTO_REF_COUNT refcnt; - CRYPTO_RWLOCK *lock; OSSL_FUNC_digest_newctx_fn *newctx; OSSL_FUNC_digest_init_fn *dinit; OSSL_FUNC_digest_update_fn *dupdate; @@ -327,7 +324,6 @@ struct evp_cipher_st { const char *description; OSSL_PROVIDER *prov; CRYPTO_REF_COUNT refcnt; - CRYPTO_RWLOCK *lock; OSSL_FUNC_cipher_newctx_fn *newctx; OSSL_FUNC_cipher_encrypt_init_fn *einit; OSSL_FUNC_cipher_decrypt_init_fn *dinit; |