X-Git-Url: https://git.openssl.org/?p=openssl.git;a=blobdiff_plain;f=crypto%2Fevp%2Fe_rc4.c;fp=crypto%2Fevp%2Fe_rc4.c;h=be6b6a0d668813996d472d2f194f954792e721c7;hp=ab3cc908ea222898f2fcd2e246c01442390b27c7;hb=44ab2dfdf9dc519e6d081646119bdda3ddfd9e85;hpb=e2d5183d7cd5479d7c63ba524b3ddc4abd707dba diff --git a/crypto/evp/e_rc4.c b/crypto/evp/e_rc4.c index ab3cc908ea..be6b6a0d66 100644 --- a/crypto/evp/e_rc4.c +++ b/crypto/evp/e_rc4.c @@ -73,7 +73,7 @@ typedef struct { RC4_KEY ks; /* working key */ } EVP_RC4_KEY; -# define data(ctx) ((EVP_RC4_KEY *)EVP_CIPHER_CTX_cipher_data(ctx)) +# define data(ctx) ((EVP_RC4_KEY *)EVP_CIPHER_CTX_get_cipher_data(ctx)) static int rc4_init_key(EVP_CIPHER_CTX *ctx, const unsigned char *key, const unsigned char *iv, int enc);