diff options
Diffstat (limited to 'src/lib/libcrypto/des/cfb64ede.c')
-rw-r--r-- | src/lib/libcrypto/des/cfb64ede.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/lib/libcrypto/des/cfb64ede.c b/src/lib/libcrypto/des/cfb64ede.c index e91dbbfc4a..69a6c25408 100644 --- a/src/lib/libcrypto/des/cfb64ede.c +++ b/src/lib/libcrypto/des/cfb64ede.c | |||
@@ -1,4 +1,4 @@ | |||
1 | /* $OpenBSD: cfb64ede.c,v 1.12 2023/07/08 07:34:34 jsing Exp $ */ | 1 | /* $OpenBSD: cfb64ede.c,v 1.13 2024/03/29 01:47:29 joshua 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 | * |
@@ -125,6 +125,7 @@ DES_ede3_cfb64_encrypt(const unsigned char *in, unsigned char *out, | |||
125 | v0 = v1 = ti[0] = ti[1] = c = cc = 0; | 125 | v0 = v1 = ti[0] = ti[1] = c = cc = 0; |
126 | *num = n; | 126 | *num = n; |
127 | } | 127 | } |
128 | LCRYPTO_ALIAS(DES_ede3_cfb64_encrypt); | ||
128 | 129 | ||
129 | /* This is compatible with the single key CFB-r for DES, even thought that's | 130 | /* This is compatible with the single key CFB-r for DES, even thought that's |
130 | * not what EVP needs. | 131 | * not what EVP needs. |
@@ -238,3 +239,4 @@ DES_ede3_cfb_encrypt(const unsigned char *in, unsigned char *out, | |||
238 | l2c(v1, iv); | 239 | l2c(v1, iv); |
239 | v0 = v1 = d0 = d1 = ti[0] = ti[1] = 0; | 240 | v0 = v1 = d0 = d1 = ti[0] = ti[1] = 0; |
240 | } | 241 | } |
242 | LCRYPTO_ALIAS(DES_ede3_cfb_encrypt); | ||