diff options
author | jsing <> | 2024-03-27 12:13:08 +0000 |
---|---|---|
committer | jsing <> | 2024-03-27 12:13:08 +0000 |
commit | c8ddabe55b583059a7979620c08beb2e79cd0909 (patch) | |
tree | 5fa60c95e51e2c5a5108d4e605f342f9c9f7d319 /src | |
parent | b82df59d7eb9e971471210b81fa7a41f3d834638 (diff) | |
download | openbsd-c8ddabe55b583059a7979620c08beb2e79cd0909.tar.gz openbsd-c8ddabe55b583059a7979620c08beb2e79cd0909.tar.bz2 openbsd-c8ddabe55b583059a7979620c08beb2e79cd0909.zip |
Remove private_RC4_set_key() from the public rc4.h header.
This does not exist in libcrypto.
Diffstat (limited to 'src')
-rw-r--r-- | src/lib/libcrypto/rc4/rc4.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/lib/libcrypto/rc4/rc4.h b/src/lib/libcrypto/rc4/rc4.h index 7ebe232106..ff2514187f 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.14 2023/07/28 10:35:14 tb Exp $ */ | 1 | /* $OpenBSD: rc4.h,v 1.15 2024/03/27 12:13:08 jsing 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 | * |
@@ -77,7 +77,6 @@ typedef struct rc4_key_st { | |||
77 | } RC4_KEY; | 77 | } RC4_KEY; |
78 | 78 | ||
79 | void RC4_set_key(RC4_KEY *key, int len, const unsigned char *data); | 79 | void RC4_set_key(RC4_KEY *key, int len, const unsigned char *data); |
80 | void private_RC4_set_key(RC4_KEY *key, int len, const unsigned char *data); | ||
81 | void RC4(RC4_KEY *key, size_t len, const unsigned char *indata, | 80 | void RC4(RC4_KEY *key, size_t len, const unsigned char *indata, |
82 | unsigned char *outdata); | 81 | unsigned char *outdata); |
83 | 82 | ||