diff options
-rw-r--r-- | src/lib/libcrypto/rc4/rc4_enc.c | 3 | ||||
-rw-r--r-- | src/lib/libcrypto/rc4/rc4_local.h | 5 | ||||
-rw-r--r-- | src/lib/libcrypto/rc4/rc4_skey.c | 4 |
3 files changed, 2 insertions, 10 deletions
diff --git a/src/lib/libcrypto/rc4/rc4_enc.c b/src/lib/libcrypto/rc4/rc4_enc.c index 3763bfa3cb..fdae87219e 100644 --- a/src/lib/libcrypto/rc4/rc4_enc.c +++ b/src/lib/libcrypto/rc4/rc4_enc.c | |||
@@ -1,4 +1,4 @@ | |||
1 | /* $OpenBSD: rc4_enc.c,v 1.18 2022/11/26 16:08:54 tb Exp $ */ | 1 | /* $OpenBSD: rc4_enc.c,v 1.19 2024/03/27 12:14:35 jsing 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 | * |
@@ -59,7 +59,6 @@ | |||
59 | #include <endian.h> | 59 | #include <endian.h> |
60 | 60 | ||
61 | #include <openssl/rc4.h> | 61 | #include <openssl/rc4.h> |
62 | #include "rc4_local.h" | ||
63 | 62 | ||
64 | /* RC4 as implemented from a posting from | 63 | /* RC4 as implemented from a posting from |
65 | * Newsgroups: sci.crypt | 64 | * Newsgroups: sci.crypt |
diff --git a/src/lib/libcrypto/rc4/rc4_local.h b/src/lib/libcrypto/rc4/rc4_local.h deleted file mode 100644 index 61d08a4d9d..0000000000 --- a/src/lib/libcrypto/rc4/rc4_local.h +++ /dev/null | |||
@@ -1,5 +0,0 @@ | |||
1 | /* $OpenBSD: rc4_local.h,v 1.1 2022/11/26 16:08:54 tb Exp $ */ | ||
2 | |||
3 | #ifndef HEADER_RC4_LOCL_H | ||
4 | #define HEADER_RC4_LOCL_H | ||
5 | #endif | ||
diff --git a/src/lib/libcrypto/rc4/rc4_skey.c b/src/lib/libcrypto/rc4/rc4_skey.c index 5833c7bd07..d0c45645a1 100644 --- a/src/lib/libcrypto/rc4/rc4_skey.c +++ b/src/lib/libcrypto/rc4/rc4_skey.c | |||
@@ -1,4 +1,4 @@ | |||
1 | /* $OpenBSD: rc4_skey.c,v 1.16 2023/07/28 10:35:14 tb Exp $ */ | 1 | /* $OpenBSD: rc4_skey.c,v 1.17 2024/03/27 12:14:35 jsing 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 | * |
@@ -58,8 +58,6 @@ | |||
58 | 58 | ||
59 | #include <openssl/rc4.h> | 59 | #include <openssl/rc4.h> |
60 | 60 | ||
61 | #include "rc4_local.h" | ||
62 | |||
63 | /* RC4 as implemented from a posting from | 61 | /* RC4 as implemented from a posting from |
64 | * Newsgroups: sci.crypt | 62 | * Newsgroups: sci.crypt |
65 | * From: sterndark@netcom.com (David Sterndark) | 63 | * From: sterndark@netcom.com (David Sterndark) |