diff options
author | Emilia Kasper <emilia@openssl.org> | 2015-10-14 18:32:38 +0200 |
---|---|---|
committer | Emilia Kasper <emilia@openssl.org> | 2015-10-14 18:45:33 +0200 |
commit | 6f73d28c20459034bfd4090494be9fb1a479c8af (patch) | |
tree | f9d4fe0b15aaa835241f6a9039e48ed42f348f58 /crypto/evp/e_des.c | |
parent | ct_locl.h: fix some comments (diff) | |
download | openssl-6f73d28c20459034bfd4090494be9fb1a479c8af.tar.xz openssl-6f73d28c20459034bfd4090494be9fb1a479c8af.zip |
Remove EVP_CHECK_DES_KEY
Thanks to the OpenBSD community for bringing this to our attention.
Reviewed-by: Rich Salz <rsalz@openssl.org>
Diffstat (limited to 'crypto/evp/e_des.c')
-rw-r--r-- | crypto/evp/e_des.c | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/crypto/evp/e_des.c b/crypto/evp/e_des.c index 0506973b14..74e87e89a2 100644 --- a/crypto/evp/e_des.c +++ b/crypto/evp/e_des.c @@ -241,12 +241,7 @@ static int des_init_key(EVP_CIPHER_CTX *ctx, const unsigned char *key, } } # endif -# ifdef EVP_CHECK_DES_KEY - if (DES_set_key_checked(deskey, dat->ks.ks) != 0) - return 0; -# else DES_set_key_unchecked(deskey, ctx->cipher_data); -# endif return 1; } |