summaryrefslogtreecommitdiff
path: root/src/lib/libcrypto/cast/c_ofb64.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/lib/libcrypto/cast/c_ofb64.c')
-rw-r--r--src/lib/libcrypto/cast/c_ofb64.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/lib/libcrypto/cast/c_ofb64.c b/src/lib/libcrypto/cast/c_ofb64.c
index 7fd5444a05..48ebab9069 100644
--- a/src/lib/libcrypto/cast/c_ofb64.c
+++ b/src/lib/libcrypto/cast/c_ofb64.c
@@ -1,4 +1,4 @@
1/* $OpenBSD: c_ofb64.c,v 1.7 2023/07/08 07:25:43 jsing Exp $ */ 1/* $OpenBSD: c_ofb64.c,v 1.8 2023/07/08 10:43:59 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 *
@@ -108,3 +108,4 @@ CAST_ofb64_encrypt(const unsigned char *in, unsigned char *out,
108 t = v0 = v1 = ti[0] = ti[1] = 0; 108 t = v0 = v1 = ti[0] = ti[1] = 0;
109 *num = n; 109 *num = n;
110} 110}
111LCRYPTO_ALIAS(CAST_ofb64_encrypt);