summaryrefslogtreecommitdiff
path: root/src/lib/libcrypto/rc4/rc4.h
diff options
context:
space:
mode:
authortb <>2023-07-28 10:35:14 +0000
committertb <>2023-07-28 10:35:14 +0000
commitf081b066a62db7e3bea15c67edb84e04026495b2 (patch)
treea224a2dfd6e61c26d9769cf16e0585806b712161 /src/lib/libcrypto/rc4/rc4.h
parentd13035e40f9f0aeb77be3097963f11fabf83e401 (diff)
downloadopenbsd-f081b066a62db7e3bea15c67edb84e04026495b2.tar.gz
openbsd-f081b066a62db7e3bea15c67edb84e04026495b2.tar.bz2
openbsd-f081b066a62db7e3bea15c67edb84e04026495b2.zip
Remove various ${thing}_options
Various, ancient ciphers exposed some of their innards via an _options() API. Apart from openssl version/speed, only some lua thingie in nmap ever looked at these. Go figure. hppa testing by miod, i386 testing by sthen. Thanks! ok jsing
Diffstat (limited to 'src/lib/libcrypto/rc4/rc4.h')
-rw-r--r--src/lib/libcrypto/rc4/rc4.h3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/lib/libcrypto/rc4/rc4.h b/src/lib/libcrypto/rc4/rc4.h
index f59185ed33..7ebe232106 100644
--- a/src/lib/libcrypto/rc4/rc4.h
+++ b/src/lib/libcrypto/rc4/rc4.h
@@ -1,4 +1,4 @@
1/* $OpenBSD: rc4.h,v 1.13 2015/10/20 15:50:13 jsing Exp $ */ 1/* $OpenBSD: rc4.h,v 1.14 2023/07/28 10:35:14 tb Exp $ */
2/* Copyright (C) 1995-1997 Eric Young (eay@cryptsoft.com) 2/* Copyright (C) 1995-1997 Eric Young (eay@cryptsoft.com)
3 * All rights reserved. 3 * All rights reserved.
4 * 4 *
@@ -76,7 +76,6 @@ typedef struct rc4_key_st {
76 RC4_INT data[256]; 76 RC4_INT data[256];
77} RC4_KEY; 77} RC4_KEY;
78 78
79const char *RC4_options(void);
80void RC4_set_key(RC4_KEY *key, int len, const unsigned char *data); 79void RC4_set_key(RC4_KEY *key, int len, const unsigned char *data);
81void private_RC4_set_key(RC4_KEY *key, int len, const unsigned char *data); 80void private_RC4_set_key(RC4_KEY *key, int len, const unsigned char *data);
82void RC4(RC4_KEY *key, size_t len, const unsigned char *indata, 81void RC4(RC4_KEY *key, size_t len, const unsigned char *indata,