Blame SOURCES/openssl-fips-0.9.8e-algo-doc.patch

c4366c
diff -up openssl-fips-0.9.8e/doc/crypto/EVP_DigestInit.pod.algo-doc openssl-fips-0.9.8e/doc/crypto/EVP_DigestInit.pod
c4366c
--- openssl-fips-0.9.8e/doc/crypto/EVP_DigestInit.pod.algo-doc	2004-05-20 23:39:50.000000000 +0200
c4366c
+++ openssl-fips-0.9.8e/doc/crypto/EVP_DigestInit.pod	2009-06-29 18:20:10.000000000 +0200
c4366c
@@ -6,7 +6,8 @@ EVP_MD_CTX_init, EVP_MD_CTX_create, EVP_
c4366c
 EVP_DigestFinal_ex, EVP_MD_CTX_cleanup, EVP_MD_CTX_destroy, EVP_MAX_MD_SIZE,
c4366c
 EVP_MD_CTX_copy_ex, EVP_MD_CTX_copy, EVP_MD_type, EVP_MD_pkey_type, EVP_MD_size,
c4366c
 EVP_MD_block_size, EVP_MD_CTX_md, EVP_MD_CTX_size, EVP_MD_CTX_block_size, EVP_MD_CTX_type,
c4366c
-EVP_md_null, EVP_md2, EVP_md5, EVP_sha, EVP_sha1, EVP_dss, EVP_dss1, EVP_mdc2,
c4366c
+EVP_md_null, EVP_md2, EVP_md5, EVP_sha, EVP_sha1, EVP_sha224,
c4366c
+EVP_sha256, EVP_sha384, EVP_sha512, EVP_dss, EVP_dss1, EVP_mdc2,
c4366c
 EVP_ripemd160, EVP_get_digestbyname, EVP_get_digestbynid, EVP_get_digestbyobj -
c4366c
 EVP digest routines
c4366c
 
c4366c
@@ -51,6 +52,10 @@ EVP digest routines
c4366c
  const EVP_MD *EVP_md5(void);
c4366c
  const EVP_MD *EVP_sha(void);
c4366c
  const EVP_MD *EVP_sha1(void);
c4366c
+ const EVP_MD *EVP_sha224(void);
c4366c
+ const EVP_MD *EVP_sha256(void);
c4366c
+ const EVP_MD *EVP_sha384(void);
c4366c
+ const EVP_MD *EVP_sha512(void);
c4366c
  const EVP_MD *EVP_dss(void);
c4366c
  const EVP_MD *EVP_dss1(void);
c4366c
  const EVP_MD *EVP_mdc2(void);
c4366c
@@ -70,7 +75,7 @@ EVP_MD_CTX_create() allocates, initializ
c4366c
 
c4366c
 EVP_DigestInit_ex() sets up digest context B<ctx> to use a digest
c4366c
 B<type> from ENGINE B<impl>. B<ctx> must be initialized before calling this
c4366c
-function. B<type> will typically be supplied by a functionsuch as EVP_sha1().
c4366c
+function. B<type> will typically be supplied by a function such as EVP_sha1().
c4366c
 If B<impl> is NULL then the default implementation of digest B<type> is used.
c4366c
 
c4366c
 EVP_DigestUpdate() hashes B<cnt> bytes of data at B<d> into the
c4366c
@@ -127,9 +132,11 @@ with this digest. For example EVP_sha1()
c4366c
 return B<NID_sha1WithRSAEncryption>. This "link" between digests and signature
c4366c
 algorithms may not be retained in future versions of OpenSSL.
c4366c
 
c4366c
-EVP_md2(), EVP_md5(), EVP_sha(), EVP_sha1(), EVP_mdc2() and EVP_ripemd160()
c4366c
-return B<EVP_MD> structures for the MD2, MD5, SHA, SHA1, MDC2 and RIPEMD160 digest
c4366c
-algorithms respectively. The associated signature algorithm is RSA in each case.
c4366c
+EVP_md2(), EVP_md5(), EVP_sha(), EVP_sha1(), EVP_sha224(), EVP_sha256(),
c4366c
+EVP_sha384(), EVP_sha512(), EVP_mdc2() and EVP_ripemd160()
c4366c
+return B<EVP_MD> structures for the MD2, MD5, SHA, SHA1, SHA224, SHA256, SHA384,
c4366c
+SHA512, MDC2 and RIPEMD160 digest algorithms respectively. The associated
c4366c
+signature algorithm is RSA in each case.
c4366c
 
c4366c
 EVP_dss() and EVP_dss1() return B<EVP_MD> structures for SHA and SHA1 digest
c4366c
 algorithms but using DSS (DSA) for the signature algorithm.
c4366c
@@ -156,7 +163,8 @@ EVP_MD_size(), EVP_MD_block_size(), EVP_
c4366c
 EVP_MD_CTX_block_size()	and EVP_MD_block_size() return the digest or block
c4366c
 size in bytes.
c4366c
 
c4366c
-EVP_md_null(), EVP_md2(), EVP_md5(), EVP_sha(), EVP_sha1(), EVP_dss(),
c4366c
+EVP_md_null(), EVP_md2(), EVP_md5(), EVP_sha(), EVP_sha1(),
c4366c
+EVP_sha224(), EVP_sha256(), EVP_sha384(), EVP_sha512(), EVP_dss(),
c4366c
 EVP_dss1(), EVP_mdc2() and EVP_ripemd160() return pointers to the
c4366c
 corresponding EVP_MD structures.
c4366c
 
c4366c
diff -up openssl-fips-0.9.8e/doc/crypto/EVP_EncryptInit.pod.algo-doc openssl-fips-0.9.8e/doc/crypto/EVP_EncryptInit.pod
c4366c
--- openssl-fips-0.9.8e/doc/crypto/EVP_EncryptInit.pod.algo-doc	2005-04-15 18:01:35.000000000 +0200
c4366c
+++ openssl-fips-0.9.8e/doc/crypto/EVP_EncryptInit.pod	2009-06-29 18:28:46.000000000 +0200
c4366c
@@ -91,6 +91,32 @@ EVP_CIPHER_CTX_set_padding - EVP cipher 
c4366c
  int EVP_CIPHER_param_to_asn1(EVP_CIPHER_CTX *c, ASN1_TYPE *type);
c4366c
  int EVP_CIPHER_asn1_to_param(EVP_CIPHER_CTX *c, ASN1_TYPE *type);
c4366c
 
c4366c
+ const EVP_CIPHER *EVP_des_ede3(void);
c4366c
+ const EVP_CIPHER *EVP_des_ede3_ecb(void);
c4366c
+ const EVP_CIPHER *EVP_des_ede3_cfb64(void);
c4366c
+ const EVP_CIPHER *EVP_des_ede3_cfb1(void);
c4366c
+ const EVP_CIPHER *EVP_des_ede3_cfb8(void);
c4366c
+ const EVP_CIPHER *EVP_des_ede3_ofb(void);
c4366c
+ const EVP_CIPHER *EVP_des_ede3_cbc(void);
c4366c
+ const EVP_CIPHER *EVP_aes_128_ecb(void);
c4366c
+ const EVP_CIPHER *EVP_aes_128_cbc(void);
c4366c
+ const EVP_CIPHER *EVP_aes_128_cfb1(void);
c4366c
+ const EVP_CIPHER *EVP_aes_128_cfb8(void);
c4366c
+ const EVP_CIPHER *EVP_aes_128_cfb128(void);
c4366c
+ const EVP_CIPHER *EVP_aes_128_ofb(void);
c4366c
+ const EVP_CIPHER *EVP_aes_192_ecb(void);
c4366c
+ const EVP_CIPHER *EVP_aes_192_cbc(void);
c4366c
+ const EVP_CIPHER *EVP_aes_192_cfb1(void);
c4366c
+ const EVP_CIPHER *EVP_aes_192_cfb8(void);
c4366c
+ const EVP_CIPHER *EVP_aes_192_cfb128(void);
c4366c
+ const EVP_CIPHER *EVP_aes_192_ofb(void);
c4366c
+ const EVP_CIPHER *EVP_aes_256_ecb(void);
c4366c
+ const EVP_CIPHER *EVP_aes_256_cbc(void);
c4366c
+ const EVP_CIPHER *EVP_aes_256_cfb1(void);
c4366c
+ const EVP_CIPHER *EVP_aes_256_cfb8(void);
c4366c
+ const EVP_CIPHER *EVP_aes_256_cfb128(void);
c4366c
+ const EVP_CIPHER *EVP_aes_256_ofb(void);
c4366c
+
c4366c
 =head1 DESCRIPTION
c4366c
 
c4366c
 The EVP cipher routines are a high level interface to certain
c4366c
@@ -297,6 +323,18 @@ Three key triple DES in CBC, ECB, CFB an
c4366c
 
c4366c
 DESX algorithm in CBC mode.
c4366c
 
c4366c
+=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)
c4366c
+
c4366c
+AES with 128 bit key length in CBC, ECB, OFB and CFB modes respectively.
c4366c
+
c4366c
+=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)
c4366c
+
c4366c
+AES with 192 bit key length in CBC, ECB, OFB and CFB modes respectively.
c4366c
+
c4366c
+=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)
c4366c
+
c4366c
+AES with 256 bit key length in CBC, ECB, OFB and CFB modes respectively.
c4366c
+
c4366c
 =item EVP_rc4(void)
c4366c
 
c4366c
 RC4 stream cipher. This is a variable key length cipher with default key length 128 bits.