diff options
author | Bob Beck <beck@cvs.openbsd.org> | 2023-07-07 13:54:47 +0000 |
---|---|---|
committer | Bob Beck <beck@cvs.openbsd.org> | 2023-07-07 13:54:47 +0000 |
commit | 2b9db4ff5cc9f7345ce32bd33a840f1d2662fc99 (patch) | |
tree | 74d8a4f00fd1847a9a686b3ee89b948f48ea19bf /lib/libcrypto/evp/p_seal.c | |
parent | 3a39861fcadd533728d4f44310f6381dcf084da4 (diff) |
Hide symbols in hkdf, evp, err, ecdsa, and ec
(part 2 of commit)
ok jsing@
Diffstat (limited to 'lib/libcrypto/evp/p_seal.c')
-rw-r--r-- | lib/libcrypto/evp/p_seal.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/lib/libcrypto/evp/p_seal.c b/lib/libcrypto/evp/p_seal.c index 8b9740fbcdc..52521e133b9 100644 --- a/lib/libcrypto/evp/p_seal.c +++ b/lib/libcrypto/evp/p_seal.c @@ -1,4 +1,4 @@ -/* $OpenBSD: p_seal.c,v 1.14 2014/10/22 13:02:04 jsing Exp $ */ +/* $OpenBSD: p_seal.c,v 1.15 2023/07/07 13:54:46 beck Exp $ */ /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) * All rights reserved. * @@ -99,6 +99,7 @@ EVP_SealInit(EVP_CIPHER_CTX *ctx, const EVP_CIPHER *type, unsigned char **ek, } return (npubk); } +LCRYPTO_ALIAS(EVP_SealInit); /* MACRO void EVP_SealUpdate(ctx,out,outl,in,inl) @@ -122,3 +123,4 @@ EVP_SealFinal(EVP_CIPHER_CTX *ctx, unsigned char *out, int *outl) i = EVP_EncryptInit_ex(ctx, NULL, NULL, NULL, NULL); return i; } +LCRYPTO_ALIAS(EVP_SealFinal); |