summaryrefslogtreecommitdiff
path: root/src/lib/libcrypto/des/cfb64enc.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/lib/libcrypto/des/cfb64enc.c')
-rw-r--r--src/lib/libcrypto/des/cfb64enc.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/lib/libcrypto/des/cfb64enc.c b/src/lib/libcrypto/des/cfb64enc.c
index d7434b9db9..d2d0dadf11 100644
--- a/src/lib/libcrypto/des/cfb64enc.c
+++ b/src/lib/libcrypto/des/cfb64enc.c
@@ -1,4 +1,4 @@
1/* $OpenBSD: cfb64enc.c,v 1.8 2023/07/08 07:11:07 beck Exp $ */ 1/* $OpenBSD: cfb64enc.c,v 1.9 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 *
@@ -120,3 +120,4 @@ DES_cfb64_encrypt(const unsigned char *in, unsigned char *out,
120 v0 = v1 = ti[0] = ti[1] = c = cc = 0; 120 v0 = v1 = ti[0] = ti[1] = c = cc = 0;
121 *num = n; 121 *num = n;
122} 122}
123LCRYPTO_ALIAS(DES_cfb64_encrypt);