From 0a9823657e0784c34547f7dc0ed0943c6b463158 Mon Sep 17 00:00:00 2001 From: jsing Date: Wed, 27 Mar 2024 12:13:08 +0000 Subject: [PATCH] Remove private_RC4_set_key() from the public rc4.h header. This does not exist in libcrypto. --- lib/libcrypto/rc4/rc4.h | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/lib/libcrypto/rc4/rc4.h b/lib/libcrypto/rc4/rc4.h index 7ebe232106b..ff2514187f7 100644 --- a/lib/libcrypto/rc4/rc4.h +++ b/lib/libcrypto/rc4/rc4.h @@ -1,4 +1,4 @@ -/* $OpenBSD: rc4.h,v 1.14 2023/07/28 10:35:14 tb Exp $ */ +/* $OpenBSD: rc4.h,v 1.15 2024/03/27 12:13:08 jsing Exp $ */ /* Copyright (C) 1995-1997 Eric Young (eay@cryptsoft.com) * All rights reserved. * @@ -77,7 +77,6 @@ typedef struct rc4_key_st { } RC4_KEY; void RC4_set_key(RC4_KEY *key, int len, const unsigned char *data); -void private_RC4_set_key(RC4_KEY *key, int len, const unsigned char *data); void RC4(RC4_KEY *key, size_t len, const unsigned char *indata, unsigned char *outdata); -- 2.20.1