summaryrefslogtreecommitdiffstats
path: root/crypto/evp/e_rc4.c
diff options
context:
space:
mode:
authorTodd Short <tshort@akamai.com>2017-01-09 15:29:42 -0500
committerRichard Levitte <levitte@openssl.org>2017-01-24 18:47:10 +0100
commit9d6fcd4295fef7ebc4232aab85718a99d36cc50a (patch)
tree1f6428efe38c98f4417d63c265a1955a124dfd1e /crypto/evp/e_rc4.c
parent7928ee4d685b727619555bc1ec0aee805f6fc8c4 (diff)
Cleanup EVP_CIPH/EP_CTRL duplicate defines
Remove duplicate defines from EVP source files. Most of them were in evp.h, which is always included. Add new ones evp_int.h EVP_CIPH_FLAG_TLS1_1_MULTIBLOCK is now always defined in evp.h, so remove conditionals on it Reviewed-by: Rich Salz <rsalz@openssl.org> Reviewed-by: Richard Levitte <levitte@openssl.org> (Merged from https://github.com/openssl/openssl/pull/2201)
Diffstat (limited to 'crypto/evp/e_rc4.c')
-rw-r--r--crypto/evp/e_rc4.c3
1 files changed, 0 insertions, 3 deletions
diff --git a/crypto/evp/e_rc4.c b/crypto/evp/e_rc4.c
index 1a2895f1d1..ea95deab8f 100644
--- a/crypto/evp/e_rc4.c
+++ b/crypto/evp/e_rc4.c
@@ -18,9 +18,6 @@
# include "internal/evp_int.h"
-/* FIXME: surely this is available elsewhere? */
-# define EVP_RC4_KEY_SIZE 16
-
typedef struct {
RC4_KEY ks; /* working key */
} EVP_RC4_KEY;