List Info

Thread: OpenSSL: openssl/doc/crypto/ md5.pod mdc2.pod ripemd.pod sha.pod




OpenSSL: openssl/doc/crypto/ md5.pod mdc2.pod ripemd.pod sha.pod
user name
2006-10-27 21:58:09
  OpenSSL CVS Repository
  http://cvs.openssl.org/
 
____________________________________________________________
________________

  Server: cvs.openssl.org                  Name:   Nils
Larsch
  Root:   /v/openssl/cvs                   Email:  nilsopenssl.org
  Module: openssl                          Date:  
27-Oct-2006 23:58:09
  Branch: HEAD                             Handle:
2006102722580900

  Modified files:
    openssl/doc/crypto      md5.pod mdc2.pod ripemd.pod
sha.pod

  Log:
    update md docs

  Summary:
    Revision    Changes     Path
    1.8         +11 -11     openssl/doc/crypto/md5.pod
    1.4         +4  -4      openssl/doc/crypto/mdc2.pod
    1.5         +5  -5      openssl/doc/crypto/ripemd.pod
    1.10        +4  -4      openssl/doc/crypto/sha.pod
 
____________________________________________________________
________________

  patch -p0 <<' .'
  Index: openssl/doc/crypto/md5.pod
 
============================================================
================
  $ cvs diff -u -r1.7 -r1.8 md5.pod
  --- openssl/doc/crypto/md5.pod	14 Aug 2000 14:05:45
-0000	1.7
  +++ openssl/doc/crypto/md5.pod	27 Oct 2006 21:58:09
-0000	1.8
   -12,10 +12,10 
    unsigned char *MD2(const unsigned char *d, unsigned long
n,
                     unsigned char *md);
   
  - void MD2_Init(MD2_CTX *c);
  - void MD2_Update(MD2_CTX *c, const unsigned char *data,
  + int MD2_Init(MD2_CTX *c);
  + int MD2_Update(MD2_CTX *c, const unsigned char *data,
                     unsigned long len);
  - void MD2_Final(unsigned char *md, MD2_CTX *c);
  + int MD2_Final(unsigned char *md, MD2_CTX *c);
   
   
    #include <openssl/md4.h>
   -23,10 +23,10 
    unsigned char *MD4(const unsigned char *d, unsigned long
n,
                     unsigned char *md);
   
  - void MD4_Init(MD4_CTX *c);
  - void MD4_Update(MD4_CTX *c, const void *data,
  + int MD4_Init(MD4_CTX *c);
  + int MD4_Update(MD4_CTX *c, const void *data,
                     unsigned long len);
  - void MD4_Final(unsigned char *md, MD4_CTX *c);
  + int MD4_Final(unsigned char *md, MD4_CTX *c);
   
   
    #include <openssl/md5.h>
   -34,10 +34,10 
    unsigned char *MD5(const unsigned char *d, unsigned long
n,
                     unsigned char *md);
   
  - void MD5_Init(MD5_CTX *c);
  - void MD5_Update(MD5_CTX *c, const void *data,
  + int MD5_Init(MD5_CTX *c);
  + int MD5_Update(MD5_CTX *c, const void *data,
                     unsigned long len);
  - void MD5_Final(unsigned char *md, MD5_CTX *c);
  + int MD5_Final(unsigned char *md, MD5_CTX *c);
   
   =head1 DESCRIPTION
   
   -78,8 +78,8 
   MD2(), MD4(), and MD5() return pointers to the hash
value. 
   
   MD2_Init(), MD2_Update(), MD2_Final(), MD4_Init(),
MD4_Update(),
  -MD4_Final(), MD5_Init(), MD5_Update(), and MD5_Final() do
not return
  -values.
  +MD4_Final(), MD5_Init(), MD5_Update(), and MD5_Final()
return 1 for
  +success, 0 otherwise.
   
   =head1 CONFORMING TO
   
   .
  patch -p0 <<' .'
  Index: openssl/doc/crypto/mdc2.pod
 
============================================================
================
  $ cvs diff -u -r1.3 -r1.4 mdc2.pod
  --- openssl/doc/crypto/mdc2.pod	25 Feb 2000 16:00:24
-0000	1.3
  +++ openssl/doc/crypto/mdc2.pod	27 Oct 2006 21:58:09
-0000	1.4
   -11,10 +11,10 
    unsigned char *MDC2(const unsigned char *d, unsigned
long n,
                     unsigned char *md);
   
  - void MDC2_Init(MDC2_CTX *c);
  - void MDC2_Update(MDC2_CTX *c, const unsigned char *data,
  + int MDC2_Init(MDC2_CTX *c);
  + int MDC2_Update(MDC2_CTX *c, const unsigned char *data,
                     unsigned long len);
  - void MDC2_Final(unsigned char *md, MDC2_CTX *c);
  + int MDC2_Final(unsigned char *md, MDC2_CTX *c);
   
   =head1 DESCRIPTION
   
   -46,7 +46,7 
   
   MDC2() returns a pointer to the hash value. 
   
  -MDC2_Init(), MDC2_Update() and MDC2_Final() do not return
values.
  +MDC2_Init(), MDC2_Update() and MDC2_Final() return 1 for
success, 0 otherwise.
   
   =head1 CONFORMING TO
   
   .
  patch -p0 <<' .'
  Index: openssl/doc/crypto/ripemd.pod
 
============================================================
================
  $ cvs diff -u -r1.4 -r1.5 ripemd.pod
  --- openssl/doc/crypto/ripemd.pod	25 Feb 2000 16:00:24
-0000	1.4
  +++ openssl/doc/crypto/ripemd.pod	27 Oct 2006 21:58:09
-0000	1.5
   -12,10 +12,10 
    unsigned char *RIPEMD160(const unsigned char *d,
unsigned long n,
                     unsigned char *md);
   
  - void RIPEMD160_Init(RIPEMD160_CTX *c);
  - void RIPEMD160_Update(RIPEMD_CTX *c, const void *data,
  + int RIPEMD160_Init(RIPEMD160_CTX *c);
  + int RIPEMD160_Update(RIPEMD_CTX *c, const void *data,
                     unsigned long len);
  - void RIPEMD160_Final(unsigned char *md, RIPEMD160_CTX
*c);
  + int RIPEMD160_Final(unsigned char *md, RIPEMD160_CTX
*c);
   
   =head1 DESCRIPTION
   
   -47,8 +47,8 
   
   RIPEMD160() returns a pointer to the hash value. 
   
  -RIPEMD160_Init(), RIPEMD160_Update() and
RIPEMD160_Final() do not
  -return values.
  +RIPEMD160_Init(), RIPEMD160_Update() and
RIPEMD160_Final() return 1 for
  +success, 0 otherwise.
   
   =head1 CONFORMING TO
   
   .
  patch -p0 <<' .'
  Index: openssl/doc/crypto/sha.pod
 
============================================================
================
  $ cvs diff -u -r1.9 -r1.10 sha.pod
  --- openssl/doc/crypto/sha.pod	25 Feb 2000 16:00:24
-0000	1.9
  +++ openssl/doc/crypto/sha.pod	27 Oct 2006 21:58:09
-0000	1.10
   -11,10 +11,10 
    unsigned char *SHA1(const unsigned char *d, unsigned
long n,
                     unsigned char *md);
   
  - void SHA1_Init(SHA_CTX *c);
  - void SHA1_Update(SHA_CTX *c, const void *data,
  + int SHA1_Init(SHA_CTX *c);
  + int SHA1_Update(SHA_CTX *c, const void *data,
                     unsigned long len);
  - void SHA1_Final(unsigned char *md, SHA_CTX *c);
  + int SHA1_Final(unsigned char *md, SHA_CTX *c);
   
   =head1 DESCRIPTION
   
   -48,7 +48,7 
   
   SHA1() returns a pointer to the hash value. 
   
  -SHA1_Init(), SHA1_Update() and SHA1_Final() do not return
values.
  +SHA1_Init(), SHA1_Update() and SHA1_Final() return 1 for
success, 0 otherwise.
   
   =head1 CONFORMING TO
   
   .
____________________________________________________________
__________
OpenSSL Project                                 http://www.openssl.org
CVS Repository Commit List                    
openssl-cvsopenssl.org
Automated List Manager                          
majordomoopenssl.org
[1]

about | contact  Other archives ( Real Estate discussion Medical topics )