2017-01-26 15:24:24 +00:00
|
|
|
diff -up openssl-1.1.0d/doc/crypto/EVP_DigestInit.pod.algo-doc openssl-1.1.0d/doc/crypto/EVP_DigestInit.pod
|
|
|
|
--- openssl-1.1.0d/doc/crypto/EVP_DigestInit.pod.algo-doc 2017-01-26 15:49:18.784947229 +0100
|
|
|
|
+++ openssl-1.1.0d/doc/crypto/EVP_DigestInit.pod 2017-01-26 15:52:46.458556068 +0100
|
|
|
|
@@ -152,7 +152,7 @@ corresponding OBJECT IDENTIFIER or NID_u
|
2016-10-11 08:31:54 +00:00
|
|
|
EVP_MD_size(), EVP_MD_block_size(), EVP_MD_CTX_size() and
|
|
|
|
EVP_MD_CTX_block_size() return the digest or block size in bytes.
|
|
|
|
|
|
|
|
-EVP_md_null(), EVP_md2(), EVP_md5(), EVP_sha1(),
|
|
|
|
+EVP_md_null(), EVP_md2(), EVP_md5(), EVP_sha1(), EVP_sha224(), EVP_sha256(), EVP_sha384(), EVP_sha512(),
|
2017-01-26 15:24:24 +00:00
|
|
|
EVP_mdc2(), EVP_ripemd160(), EVP_blake2b512(), and EVP_blake2s256() return
|
2016-10-11 08:31:54 +00:00
|
|
|
pointers to the corresponding EVP_MD structures.
|
|
|
|
|
2017-01-26 15:24:24 +00:00
|
|
|
diff -up openssl-1.1.0d/doc/crypto/EVP_EncryptInit.pod.algo-doc openssl-1.1.0d/doc/crypto/EVP_EncryptInit.pod
|
|
|
|
--- openssl-1.1.0d/doc/crypto/EVP_EncryptInit.pod.algo-doc 2017-01-26 14:10:24.000000000 +0100
|
|
|
|
+++ openssl-1.1.0d/doc/crypto/EVP_EncryptInit.pod 2017-01-26 15:49:18.784947229 +0100
|
|
|
|
@@ -108,6 +108,32 @@ EVP_chacha20, EVP_chacha20_poly1305 - EV
|
2016-10-11 08:31:54 +00:00
|
|
|
int EVP_CIPHER_param_to_asn1(EVP_CIPHER_CTX *c, ASN1_TYPE *type);
|
|
|
|
int EVP_CIPHER_asn1_to_param(EVP_CIPHER_CTX *c, ASN1_TYPE *type);
|
|
|
|
|
|
|
|
+ const EVP_CIPHER *EVP_des_ede3(void);
|
|
|
|
+ const EVP_CIPHER *EVP_des_ede3_ecb(void);
|
|
|
|
+ const EVP_CIPHER *EVP_des_ede3_cfb64(void);
|
|
|
|
+ const EVP_CIPHER *EVP_des_ede3_cfb1(void);
|
|
|
|
+ const EVP_CIPHER *EVP_des_ede3_cfb8(void);
|
|
|
|
+ const EVP_CIPHER *EVP_des_ede3_ofb(void);
|
|
|
|
+ const EVP_CIPHER *EVP_des_ede3_cbc(void);
|
|
|
|
+ const EVP_CIPHER *EVP_aes_128_ecb(void);
|
|
|
|
+ const EVP_CIPHER *EVP_aes_128_cbc(void);
|
|
|
|
+ const EVP_CIPHER *EVP_aes_128_cfb1(void);
|
|
|
|
+ const EVP_CIPHER *EVP_aes_128_cfb8(void);
|
|
|
|
+ const EVP_CIPHER *EVP_aes_128_cfb128(void);
|
|
|
|
+ const EVP_CIPHER *EVP_aes_128_ofb(void);
|
|
|
|
+ const EVP_CIPHER *EVP_aes_192_ecb(void);
|
|
|
|
+ const EVP_CIPHER *EVP_aes_192_cbc(void);
|
|
|
|
+ const EVP_CIPHER *EVP_aes_192_cfb1(void);
|
|
|
|
+ const EVP_CIPHER *EVP_aes_192_cfb8(void);
|
|
|
|
+ const EVP_CIPHER *EVP_aes_192_cfb128(void);
|
|
|
|
+ const EVP_CIPHER *EVP_aes_192_ofb(void);
|
|
|
|
+ const EVP_CIPHER *EVP_aes_256_ecb(void);
|
|
|
|
+ const EVP_CIPHER *EVP_aes_256_cbc(void);
|
|
|
|
+ const EVP_CIPHER *EVP_aes_256_cfb1(void);
|
|
|
|
+ const EVP_CIPHER *EVP_aes_256_cfb8(void);
|
|
|
|
+ const EVP_CIPHER *EVP_aes_256_cfb128(void);
|
|
|
|
+ const EVP_CIPHER *EVP_aes_256_ofb(void);
|
|
|
|
+
|
|
|
|
=head1 DESCRIPTION
|
|
|
|
|
|
|
|
The EVP cipher routines are a high level interface to certain
|