diff options
Diffstat (limited to 'src/lib/libcrypto/evp/p_seal.c')
-rw-r--r-- | src/lib/libcrypto/evp/p_seal.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/lib/libcrypto/evp/p_seal.c b/src/lib/libcrypto/evp/p_seal.c index 8b9740fbcd..52521e133b 100644 --- a/src/lib/libcrypto/evp/p_seal.c +++ b/src/lib/libcrypto/evp/p_seal.c | |||
@@ -1,4 +1,4 @@ | |||
1 | /* $OpenBSD: p_seal.c,v 1.14 2014/10/22 13:02:04 jsing Exp $ */ | 1 | /* $OpenBSD: p_seal.c,v 1.15 2023/07/07 13:54:46 beck Exp $ */ |
2 | /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) | 2 | /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) |
3 | * All rights reserved. | 3 | * All rights reserved. |
4 | * | 4 | * |
@@ -99,6 +99,7 @@ EVP_SealInit(EVP_CIPHER_CTX *ctx, const EVP_CIPHER *type, unsigned char **ek, | |||
99 | } | 99 | } |
100 | return (npubk); | 100 | return (npubk); |
101 | } | 101 | } |
102 | LCRYPTO_ALIAS(EVP_SealInit); | ||
102 | 103 | ||
103 | /* MACRO | 104 | /* MACRO |
104 | void EVP_SealUpdate(ctx,out,outl,in,inl) | 105 | void EVP_SealUpdate(ctx,out,outl,in,inl) |
@@ -122,3 +123,4 @@ EVP_SealFinal(EVP_CIPHER_CTX *ctx, unsigned char *out, int *outl) | |||
122 | i = EVP_EncryptInit_ex(ctx, NULL, NULL, NULL, NULL); | 123 | i = EVP_EncryptInit_ex(ctx, NULL, NULL, NULL, NULL); |
123 | return i; | 124 | return i; |
124 | } | 125 | } |
126 | LCRYPTO_ALIAS(EVP_SealFinal); | ||