2
0
mirror of https://github.com/openssl/openssl.git synced 2025-03-07 19:38:33 +08:00
openssl/crypto/evp
Kirill Marinushkin 842dc98705 Add aliases for des-ede-ecb and des-ede3-ecb ciphers.
Currently we can get all block ciphers with
	EVP_get_cipherbyname("<alg_name>-<block-mode-name>")
for example, by names "aes-128-ecb" or "des-ede-cbc".
I found a problem with des-ede-ecb and des-ede3-ecb ciphers as
they can be accessed only with names:
	EVP_get_cipherbyname("des-ede")
	EVP_get_cipherbyname("des-ede3")
It breaks the general concept.

In this patch I add aliases which allow to use names:
	EVP_get_cipherbyname("des-ede-ecb")
	EVP_get_cipherbyname("des-ede3-ecb")
in addition to the currently used names.

Reviewed-by: Richard Levitte <levitte@openssl.org>
Reviewed-by: Rich Salz <rsalz@openssl.org>
2016-04-29 09:17:09 -04:00
..
bio_b64.c Make BIO opaque 2016-03-29 17:40:54 +01:00
bio_enc.c Make BIO opaque 2016-03-29 17:40:54 +01:00
bio_md.c Make BIO opaque 2016-03-29 17:40:54 +01:00
bio_ok.c Make BIO opaque 2016-03-29 17:40:54 +01:00
build.info Review comments 2016-03-11 10:39:10 -05:00
c_allc.c Add aliases for des-ede-ecb and des-ede3-ecb ciphers. 2016-04-29 09:17:09 -04:00
c_alld.c Rename int_*() functions to *_int() 2016-04-13 08:59:03 +01:00
cmeth_lib.c
digest.c Remove #error from include files. 2016-03-20 19:48:36 -04:00
e_aes_cbc_hmac_sha1.c Remove OPENSSL_NO_AES guards 2016-04-13 21:25:24 +01:00
e_aes_cbc_hmac_sha256.c Remove OPENSSL_NO_AES guards 2016-04-13 21:25:24 +01:00
e_aes.c evp/aes_aes.c: engage Fujitsu SPARC64 X AES support. 2016-04-20 09:57:43 +02:00
e_bf.c
e_camellia.c
e_cast.c
e_chacha20_poly1305.c
e_des3.c
e_des.c
e_idea.c Fix missing IDEA renames (windows build) 2016-04-20 14:48:54 -04:00
e_null.c
e_old.c Remove OPENSSL_NO_AES guards 2016-04-13 21:25:24 +01:00
e_rc2.c
e_rc4_hmac_md5.c
e_rc4.c
e_rc5.c
e_seed.c Fix no-seed 2016-03-21 14:42:46 +00:00
e_xcbc_d.c
encode.c
evp_cnf.c Move dso.h to internal 2016-03-23 09:12:11 -04:00
evp_enc.c Remove #error from include files. 2016-03-20 19:48:36 -04:00
evp_err.c
evp_key.c
evp_lib.c
evp_locl.h
evp_pbe.c
evp_pkey.c
m_md2.c Remove #error from include files. 2016-03-20 19:48:36 -04:00
m_md4.c Remove #error from include files. 2016-03-20 19:48:36 -04:00
m_md5_sha1.c Remove OPENSSL_NO_SHA guards 2016-04-13 21:25:24 +01:00
m_md5.c Remove #error from include files. 2016-03-20 19:48:36 -04:00
m_mdc2.c Remove #error from include files. 2016-03-20 19:48:36 -04:00
m_null.c
m_ripemd.c Remove #error from include files. 2016-03-20 19:48:36 -04:00
m_sha1.c Remove #error from include files. 2016-03-20 19:48:36 -04:00
m_sigver.c
m_wp.c
names.c Remove check_defer() 2016-04-13 15:05:07 +01:00
p5_crpt2.c
p5_crpt.c
p_dec.c Remove #error from include files. 2016-03-20 19:48:36 -04:00
p_enc.c Remove #error from include files. 2016-03-20 19:48:36 -04:00
p_lib.c Remove #error from include files. 2016-03-20 19:48:36 -04:00
p_open.c
p_seal.c Remove #error from include files. 2016-03-20 19:48:36 -04:00
p_sign.c
p_verify.c
pmeth_fn.c Convert CRYPTO_LOCK_EVP_PKEY to new multi-threading API 2016-03-08 11:10:34 -05:00
pmeth_gn.c
pmeth_lib.c Make string_to_hex/hex_to_string public 2016-04-18 09:02:11 -04:00
scrypt.c