source: trunk/server/common/patches/openssl-1.0.0n-algo-doc.patch @ 2561

Last change on this file since 2561 was 2558, checked in by andersk, 10 years ago
Update OpenSSL to 1.0.0n
File size: 3.8 KB
  • openssl-1.0.1a/doc/crypto/EVP_DigestInit.pod

    diff -up openssl-1.0.1a/doc/crypto/EVP_DigestInit.pod.algo-doc openssl-1.0.1a/doc/crypto/EVP_DigestInit.pod
    old new EVP_MD_CTX_create() allocates, initializ 
    7575
    7676EVP_DigestInit_ex() sets up digest context B<ctx> to use a digest
    7777B<type> from ENGINE B<impl>. B<ctx> must be initialized before calling this
    78 function. B<type> will typically be supplied by a functionsuch as EVP_sha1().
     78function. B<type> will typically be supplied by a function such as EVP_sha1().
    7979If B<impl> is NULL then the default implementation of digest B<type> is used.
    8080
    8181EVP_DigestUpdate() hashes B<cnt> bytes of data at B<d> into the
    EVP_MD_size(), EVP_MD_block_size(), EVP_ 
    165165EVP_MD_size(), EVP_MD_block_size(), EVP_MD_CTX_size() and
    166166EVP_MD_CTX_block_size() return the digest or block size in bytes.
    167167
    168 EVP_md_null(), EVP_md2(), EVP_md5(), EVP_sha(), EVP_sha1(), EVP_dss(),
     168EVP_md_null(), EVP_md2(), EVP_md5(), EVP_sha(), EVP_sha1(),
     169EVP_sha224(), EVP_sha256(), EVP_sha384(), EVP_sha512(), EVP_dss(),
    169170EVP_dss1(), EVP_mdc2() and EVP_ripemd160() return pointers to the
    170171corresponding EVP_MD structures.
    171172
  • openssl-1.0.1a/doc/crypto/EVP_EncryptInit.pod

    diff -up openssl-1.0.1a/doc/crypto/EVP_EncryptInit.pod.algo-doc openssl-1.0.1a/doc/crypto/EVP_EncryptInit.pod
    old new EVP_CIPHER_CTX_set_padding - EVP cipher 
    9191 int EVP_CIPHER_param_to_asn1(EVP_CIPHER_CTX *c, ASN1_TYPE *type);
    9292 int EVP_CIPHER_asn1_to_param(EVP_CIPHER_CTX *c, ASN1_TYPE *type);
    9393
     94 const EVP_CIPHER *EVP_des_ede3(void);
     95 const EVP_CIPHER *EVP_des_ede3_ecb(void);
     96 const EVP_CIPHER *EVP_des_ede3_cfb64(void);
     97 const EVP_CIPHER *EVP_des_ede3_cfb1(void);
     98 const EVP_CIPHER *EVP_des_ede3_cfb8(void);
     99 const EVP_CIPHER *EVP_des_ede3_ofb(void);
     100 const EVP_CIPHER *EVP_des_ede3_cbc(void);
     101 const EVP_CIPHER *EVP_aes_128_ecb(void);
     102 const EVP_CIPHER *EVP_aes_128_cbc(void);
     103 const EVP_CIPHER *EVP_aes_128_cfb1(void);
     104 const EVP_CIPHER *EVP_aes_128_cfb8(void);
     105 const EVP_CIPHER *EVP_aes_128_cfb128(void);
     106 const EVP_CIPHER *EVP_aes_128_ofb(void);
     107 const EVP_CIPHER *EVP_aes_192_ecb(void);
     108 const EVP_CIPHER *EVP_aes_192_cbc(void);
     109 const EVP_CIPHER *EVP_aes_192_cfb1(void);
     110 const EVP_CIPHER *EVP_aes_192_cfb8(void);
     111 const EVP_CIPHER *EVP_aes_192_cfb128(void);
     112 const EVP_CIPHER *EVP_aes_192_ofb(void);
     113 const EVP_CIPHER *EVP_aes_256_ecb(void);
     114 const EVP_CIPHER *EVP_aes_256_cbc(void);
     115 const EVP_CIPHER *EVP_aes_256_cfb1(void);
     116 const EVP_CIPHER *EVP_aes_256_cfb8(void);
     117 const EVP_CIPHER *EVP_aes_256_cfb128(void);
     118 const EVP_CIPHER *EVP_aes_256_ofb(void);
     119
    94120=head1 DESCRIPTION
    95121
    96122The EVP cipher routines are a high level interface to certain
    Three key triple DES in CBC, ECB, CFB an 
    297323
    298324DESX algorithm in CBC mode.
    299325
     326=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)
     327
     328AES with 128 bit key length in CBC, ECB, OFB and CFB modes respectively.
     329
     330=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)
     331
     332AES with 192 bit key length in CBC, ECB, OFB and CFB modes respectively.
     333
     334=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)
     335
     336AES with 256 bit key length in CBC, ECB, OFB and CFB modes respectively.
     337
    300338=item EVP_rc4(void)
    301339
    302340RC4 stream cipher. This is a variable key length cipher with default key length 128 bits.
Note: See TracBrowser for help on using the repository browser.