summaryrefslogtreecommitdiffstats
path: root/include/crypto/evp.h
diff options
context:
space:
mode:
authorPauli <pauli@openssl.org>2023-06-22 01:48:49 +0200
committerPauli <pauli@openssl.org>2023-07-01 13:18:25 +0200
commit6be83ac172aac93b49ae0b847fd5ac9de6ab3ff5 (patch)
tree87100def56be88bd30b7ad3d74ab9959c9258d7a /include/crypto/evp.h
parentx509: update to structure based atomics (diff)
downloadopenssl-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.h4
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;