You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
77 lines
3.8 KiB
77 lines
3.8 KiB
diff -up openssl-1.0.1i/doc/crypto/EVP_DigestInit.pod.algo-doc openssl-1.0.1i/doc/crypto/EVP_DigestInit.pod |
|
--- openssl-1.0.1i/doc/crypto/EVP_DigestInit.pod.algo-doc 2014-08-06 23:10:56.000000000 +0200 |
|
+++ openssl-1.0.1i/doc/crypto/EVP_DigestInit.pod 2014-08-07 11:18:01.290773970 +0200 |
|
@@ -75,7 +75,7 @@ EVP_MD_CTX_create() allocates, initializ |
|
|
|
EVP_DigestInit_ex() sets up digest context B<ctx> to use a digest |
|
B<type> from ENGINE B<impl>. B<ctx> must be initialized before calling this |
|
-function. B<type> will typically be supplied by a functionsuch as EVP_sha1(). |
|
+function. B<type> will typically be supplied by a function such as EVP_sha1(). |
|
If B<impl> is NULL then the default implementation of digest B<type> is used. |
|
|
|
EVP_DigestUpdate() hashes B<cnt> bytes of data at B<d> into the |
|
@@ -164,7 +164,8 @@ corresponding OBJECT IDENTIFIER or NID_u |
|
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_sha(), EVP_sha1(), EVP_dss(), |
|
+EVP_md_null(), EVP_md2(), EVP_md5(), EVP_sha(), EVP_sha1(), |
|
+EVP_sha224(), EVP_sha256(), EVP_sha384(), EVP_sha512(), EVP_dss(), |
|
EVP_dss1(), EVP_mdc2() and EVP_ripemd160() return pointers to the |
|
corresponding EVP_MD structures. |
|
|
|
diff -up openssl-1.0.1i/doc/crypto/EVP_EncryptInit.pod.algo-doc openssl-1.0.1i/doc/crypto/EVP_EncryptInit.pod |
|
--- openssl-1.0.1i/doc/crypto/EVP_EncryptInit.pod.algo-doc 2014-08-06 23:10:56.000000000 +0200 |
|
+++ openssl-1.0.1i/doc/crypto/EVP_EncryptInit.pod 2014-08-07 10:55:25.100638252 +0200 |
|
@@ -91,6 +91,32 @@ EVP_CIPHER_CTX_set_padding - EVP cipher |
|
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 |
|
@@ -297,6 +323,18 @@ Three key triple DES in CBC, ECB, CFB an |
|
|
|
DESX algorithm in CBC mode. |
|
|
|
+=item EVP_aes_128_cbc(void), EVP_aes_128_ecb(), EVP_aes_128_ofb(void), EVP_aes_128_cfb1(void), EVP_aes_128_cfb8(void), EVP_aes_128_cfb128(void) |
|
+ |
|
+AES with 128 bit key length in CBC, ECB, OFB and CFB modes respectively. |
|
+ |
|
+=item EVP_aes_192_cbc(void), EVP_aes_192_ecb(), EVP_aes_192_ofb(void), EVP_aes_192_cfb1(void), EVP_aes_192_cfb8(void), EVP_aes_192_cfb128(void) |
|
+ |
|
+AES with 192 bit key length in CBC, ECB, OFB and CFB modes respectively. |
|
+ |
|
+=item EVP_aes_256_cbc(void), EVP_aes_256_ecb(), EVP_aes_256_ofb(void), EVP_aes_256_cfb1(void), EVP_aes_256_cfb8(void), EVP_aes_256_cfb128(void) |
|
+ |
|
+AES with 256 bit key length in CBC, ECB, OFB and CFB modes respectively. |
|
+ |
|
=item EVP_rc4(void) |
|
|
|
RC4 stream cipher. This is a variable key length cipher with default key length 128 bits.
|
|
|