projects
/
oweals
/
openssl.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
41a6fa7
)
/dev/crypto engine: add missing RC4 parameter
author
Richard Levitte
<levitte@openssl.org>
Thu, 20 Sep 2018 13:33:21 +0000
(15:33 +0200)
committer
Richard Levitte
<levitte@openssl.org>
Thu, 20 Sep 2018 20:01:55 +0000
(22:01 +0200)
Fixes #7280
Reviewed-by: Matt Caswell <matt@openssl.org>
Reviewed-by: Matthias St. Pierre <Matthias.St.Pierre@ncp-e.com>
(Merged from https://github.com/openssl/openssl/pull/7281)
crypto/engine/eng_devcrypto.c
patch
|
blob
|
history
diff --git
a/crypto/engine/eng_devcrypto.c
b/crypto/engine/eng_devcrypto.c
index 9deaf5c6188ca73e4a3e8a06b7393fc501d84382..6d97e998129a66fcebd0b94daa51cfca37721b21 100644
(file)
--- a/
crypto/engine/eng_devcrypto.c
+++ b/
crypto/engine/eng_devcrypto.c
@@
-69,7
+69,7
@@
static const struct cipher_data_st {
{ NID_aes_192_cbc, 16, 192 / 8, 16, EVP_CIPH_CBC_MODE, CRYPTO_AES_CBC },
{ NID_aes_256_cbc, 16, 256 / 8, 16, EVP_CIPH_CBC_MODE, CRYPTO_AES_CBC },
#ifndef OPENSSL_NO_RC4
- { NID_rc4, 1, 16, 0, CRYPTO_ARC4 },
+ { NID_rc4, 1, 16, 0,
EVP_CIPH_STREAM_CIPHER,
CRYPTO_ARC4 },
#endif
#if !defined(CHECK_BSD_STYLE_MACROS) || defined(CRYPTO_AES_CTR)
{ NID_aes_128_ctr, 16, 128 / 8, 16, EVP_CIPH_CTR_MODE, CRYPTO_AES_CTR },