e8c1834
diff -up openssl-1.0.1a/doc/crypto/EVP_DigestInit.pod.algo-doc openssl-1.0.1a/doc/crypto/EVP_DigestInit.pod
e8c1834
--- openssl-1.0.1a/doc/crypto/EVP_DigestInit.pod.algo-doc	2012-04-11 00:28:22.000000000 +0200
e8c1834
+++ openssl-1.0.1a/doc/crypto/EVP_DigestInit.pod	2012-04-20 09:14:01.865167011 +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
e8c1834
@@ -165,7 +165,8 @@ EVP_MD_size(), EVP_MD_block_size(), EVP_
ed645aa
 EVP_MD_CTX_block_size()	and EVP_MD_block_size() return the digest or block
ed645aa
 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
 
e8c1834
diff -up openssl-1.0.1a/doc/crypto/EVP_EncryptInit.pod.algo-doc openssl-1.0.1a/doc/crypto/EVP_EncryptInit.pod
e8c1834
--- openssl-1.0.1a/doc/crypto/EVP_EncryptInit.pod.algo-doc	2005-04-15 18:01:35.000000000 +0200
e8c1834
+++ openssl-1.0.1a/doc/crypto/EVP_EncryptInit.pod	2012-04-20 09:10:59.114736465 +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.