a78828f
diff -up openssl-1.0.1i/doc/crypto/EVP_DigestInit.pod.algo-doc openssl-1.0.1i/doc/crypto/EVP_DigestInit.pod
a78828f
--- openssl-1.0.1i/doc/crypto/EVP_DigestInit.pod.algo-doc	2014-08-06 23:10:56.000000000 +0200
a78828f
+++ openssl-1.0.1i/doc/crypto/EVP_DigestInit.pod	2014-08-07 11:18:01.290773970 +0200
e8c1834
@@ -75,7 +75,7 @@ EVP_MD_CTX_create() allocates, initializ
ed645aa
 
ed645aa
 EVP_DigestInit_ex() sets up digest context B<ctx> to use a digest
ed645aa
 B<type> from ENGINE B<impl>. B<ctx> must be initialized before calling this
ed645aa
-function. B<type> will typically be supplied by a functionsuch as EVP_sha1().
ed645aa
+function. B<type> will typically be supplied by a function such as EVP_sha1().
ed645aa
 If B<impl> is NULL then the default implementation of digest B<type> is used.
ed645aa
 
ed645aa
 EVP_DigestUpdate() hashes B<cnt> bytes of data at B<d> into the
a78828f
@@ -164,7 +164,8 @@ corresponding OBJECT IDENTIFIER or NID_u
a78828f
 EVP_MD_size(), EVP_MD_block_size(), EVP_MD_CTX_size() and
a78828f
 EVP_MD_CTX_block_size() return the digest or block size in bytes.
ed645aa
 
ed645aa
-EVP_md_null(), EVP_md2(), EVP_md5(), EVP_sha(), EVP_sha1(), EVP_dss(),
ed645aa
+EVP_md_null(), EVP_md2(), EVP_md5(), EVP_sha(), EVP_sha1(),
ed645aa
+EVP_sha224(), EVP_sha256(), EVP_sha384(), EVP_sha512(), EVP_dss(),
ed645aa
 EVP_dss1(), EVP_mdc2() and EVP_ripemd160() return pointers to the
ed645aa
 corresponding EVP_MD structures.
ed645aa
 
a78828f
diff -up openssl-1.0.1i/doc/crypto/EVP_EncryptInit.pod.algo-doc openssl-1.0.1i/doc/crypto/EVP_EncryptInit.pod
a78828f
--- openssl-1.0.1i/doc/crypto/EVP_EncryptInit.pod.algo-doc	2014-08-06 23:10:56.000000000 +0200
a78828f
+++ openssl-1.0.1i/doc/crypto/EVP_EncryptInit.pod	2014-08-07 10:55:25.100638252 +0200
e8c1834
@@ -91,6 +91,32 @@ EVP_CIPHER_CTX_set_padding - EVP cipher
ed645aa
  int EVP_CIPHER_param_to_asn1(EVP_CIPHER_CTX *c, ASN1_TYPE *type);
ed645aa
  int EVP_CIPHER_asn1_to_param(EVP_CIPHER_CTX *c, ASN1_TYPE *type);
ed645aa
 
ed645aa
+ const EVP_CIPHER *EVP_des_ede3(void);
ed645aa
+ const EVP_CIPHER *EVP_des_ede3_ecb(void);
ed645aa
+ const EVP_CIPHER *EVP_des_ede3_cfb64(void);
ed645aa
+ const EVP_CIPHER *EVP_des_ede3_cfb1(void);
ed645aa
+ const EVP_CIPHER *EVP_des_ede3_cfb8(void);
ed645aa
+ const EVP_CIPHER *EVP_des_ede3_ofb(void);
ed645aa
+ const EVP_CIPHER *EVP_des_ede3_cbc(void);
ed645aa
+ const EVP_CIPHER *EVP_aes_128_ecb(void);
ed645aa
+ const EVP_CIPHER *EVP_aes_128_cbc(void);
ed645aa
+ const EVP_CIPHER *EVP_aes_128_cfb1(void);
ed645aa
+ const EVP_CIPHER *EVP_aes_128_cfb8(void);
ed645aa
+ const EVP_CIPHER *EVP_aes_128_cfb128(void);
ed645aa
+ const EVP_CIPHER *EVP_aes_128_ofb(void);
ed645aa
+ const EVP_CIPHER *EVP_aes_192_ecb(void);
ed645aa
+ const EVP_CIPHER *EVP_aes_192_cbc(void);
ed645aa
+ const EVP_CIPHER *EVP_aes_192_cfb1(void);
ed645aa
+ const EVP_CIPHER *EVP_aes_192_cfb8(void);
ed645aa
+ const EVP_CIPHER *EVP_aes_192_cfb128(void);
ed645aa
+ const EVP_CIPHER *EVP_aes_192_ofb(void);
ed645aa
+ const EVP_CIPHER *EVP_aes_256_ecb(void);
ed645aa
+ const EVP_CIPHER *EVP_aes_256_cbc(void);
ed645aa
+ const EVP_CIPHER *EVP_aes_256_cfb1(void);
ed645aa
+ const EVP_CIPHER *EVP_aes_256_cfb8(void);
ed645aa
+ const EVP_CIPHER *EVP_aes_256_cfb128(void);
ed645aa
+ const EVP_CIPHER *EVP_aes_256_ofb(void);
ed645aa
+
ed645aa
 =head1 DESCRIPTION
ed645aa
 
ed645aa
 The EVP cipher routines are a high level interface to certain
ed645aa
@@ -297,6 +323,18 @@ Three key triple DES in CBC, ECB, CFB an
ed645aa
 
ed645aa
 DESX algorithm in CBC mode.
ed645aa
 
ed645aa
+=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)
ed645aa
+
ed645aa
+AES with 128 bit key length in CBC, ECB, OFB and CFB modes respectively.
ed645aa
+
ed645aa
+=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)
ed645aa
+
ed645aa
+AES with 192 bit key length in CBC, ECB, OFB and CFB modes respectively.
ed645aa
+
ed645aa
+=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)
ed645aa
+
ed645aa
+AES with 256 bit key length in CBC, ECB, OFB and CFB modes respectively.
ed645aa
+
ed645aa
 =item EVP_rc4(void)
ed645aa
 
ed645aa
 RC4 stream cipher. This is a variable key length cipher with default key length 128 bits.