[prev in list] [next in list] [prev in thread] [next in thread] 

List:       rpm-cvs
Subject:    [CVS] RPM: rpm-5_4: beecrypt/include/beecrypt/ beecrypt.h md4.h md5.h ...
From:       "Jeff Johnson" <jbj () rpm5 ! org>
Date:       2014-09-27 15:47:40
Message-ID: 20140927154740.63A227C4EA () rpm5 ! org
[Download RAW message or body]

  RPM Package Manager, CVS Repository
  http://rpm5.org/cvs/
  ____________________________________________________________________________

  Server: rpm5.org                         Name:   Jeff Johnson
  Root:   /v/rpm/cvs                       Email:  jbj@rpm5.org
  Module: beecrypt                         Date:   27-Sep-2014 17:47:40
  Branch: rpm-5_4                          Handle: 2014092715473900

  Modified files:           (Branch: rpm-5_4)
    beecrypt/include/beecrypt
                            beecrypt.h md4.h md5.h pkcs1.h ripemd128.h
                            ripemd160.h ripemd256.h ripemd320.h sha1.h
                            sha224.h sha256.h sha384.h sha512.h

  Log:
    - beecrypt: -Wdocumentation fixes.

  Summary:
    Revision    Changes     Path
    1.1.1.1.4.1 +7  -7      beecrypt/include/beecrypt/beecrypt.h
    1.1.1.1.4.1 +2  -2      beecrypt/include/beecrypt/md4.h
    1.1.1.1.4.1 +2  -2      beecrypt/include/beecrypt/md5.h
    1.1.1.1.4.1 +2  -2      beecrypt/include/beecrypt/pkcs1.h
    1.1.1.1.4.1 +2  -2      beecrypt/include/beecrypt/ripemd128.h
    1.1.1.1.4.1 +2  -2      beecrypt/include/beecrypt/ripemd160.h
    1.1.1.1.4.1 +2  -2      beecrypt/include/beecrypt/ripemd256.h
    1.1.1.1.4.1 +2  -2      beecrypt/include/beecrypt/ripemd320.h
    1.1.1.1.4.1 +2  -2      beecrypt/include/beecrypt/sha1.h
    1.1.1.1.4.1 +2  -2      beecrypt/include/beecrypt/sha224.h
    1.1.1.1.4.1 +2  -2      beecrypt/include/beecrypt/sha256.h
    1.1.1.1.4.1 +2  -2      beecrypt/include/beecrypt/sha384.h
    1.1.1.1.4.1 +2  -2      beecrypt/include/beecrypt/sha512.h
  ____________________________________________________________________________

  patch -p0 <<'@@ .'
  Index: beecrypt/include/beecrypt/beecrypt.h
  ============================================================================
  $ cvs diff -u -r1.1.1.1 -r1.1.1.1.4.1 beecrypt.h
  --- beecrypt/include/beecrypt/beecrypt.h	29 Apr 2010 16:54:27 -0000	1.1.1.1
  +++ beecrypt/include/beecrypt/beecrypt.h	27 Sep 2014 15:47:39 -0000	1.1.1.1.4.1
  @@ -120,7 +120,7 @@
    * \retval -1 On failure.
    */
   BEECRYPTAPI
  -int						entropyGatherNext(byte*, size_t);
  +int						entropyGatherNext(byte* data, size_t size);
   
   #ifdef __cplusplus
   }
  @@ -581,7 +581,7 @@
    * \retval -1 on failure.
    * \ingroup BC_m
    */
  -typedef int (*blockCipherSetIV  )(blockCipherParam*, const byte*);
  +typedef int (*blockCipherSetIV  )(blockCipherParam* bp, const byte* iv);
   
   /*!\typedef int (*blockCipherSetCTR)(blockCipherParam* bp, const byte* nivz, \
                size_t counter)
    * \brief Prototype definition for an initialization vector setup function.
  @@ -593,7 +593,7 @@
    * \retval -1 on failure.
    * \ingroup BC_m
    */
  -typedef int (*blockCipherSetCTR )(blockCipherParam*, const byte*, size_t);
  +typedef int (*blockCipherSetCTR )(blockCipherParam* bp, const byte* nivz, size_t \
counter);  
   
   /*!\typedef int (*blockCipherRawcrypt)(blockCipherParam* bp, uint32_t* dst, const \
uint32_t* src)  @@ -605,7 +605,7 @@
    * \retval -1 on failure.
    * \ingroup BC_m
    */
  -typedef int (*blockCipherRawcrypt)(blockCipherParam*, uint32_t*, const uint32_t*);
  +typedef int (*blockCipherRawcrypt)(blockCipherParam* bp, uint32_t* dst, const \
uint32_t* src);  
   /*!\typedef int (*blockCipherModcrypt)(blockCipherParam* bp, uint32_t* dst, const \
                uint32_t* src, unsigned int nblocks)
    * \brief Prototype for a \e encryption or decryption function which operates
  @@ -618,7 +618,7 @@
    * \retval -1 on failure.
    * \ingroup BC_m
    */
  -typedef int (*blockCipherModcrypt)(blockCipherParam*, uint32_t*, const uint32_t*, \
unsigned int);  +typedef int (*blockCipherModcrypt)(blockCipherParam* bp, uint32_t* \
dst, const uint32_t* src, unsigned int nblocks);  
   typedef uint32_t* (*blockCipherFeedback)(blockCipherParam*);
   
  @@ -730,7 +730,7 @@
    *  range.
    */
   BEECRYPTAPI
  -const blockCipher*		blockCipherGet(int);
  +const blockCipher*		blockCipherGet(int n);
   
   /*!\fn const blockCipher* blockCipherFind(const char* name)
    * \brief This function returns the blockcipher specified by the given name.
  @@ -738,7 +738,7 @@
    * \return A pointer to a blockcipher or null, if the name wasn't found.
    */
   BEECRYPTAPI
  -const blockCipher*		blockCipherFind(const char*);
  +const blockCipher*		blockCipherFind(const char* name);
   
   /*!\fn const blockCipher* blockCipherDefault()
    * \brief This functions returns the default blockcipher; the default value
  @@ .
  patch -p0 <<'@@ .'
  Index: beecrypt/include/beecrypt/md4.h
  ============================================================================
  $ cvs diff -u -r1.1.1.1 -r1.1.1.1.4.1 md4.h
  --- beecrypt/include/beecrypt/md4.h	29 Apr 2010 16:54:26 -0000	1.1.1.1
  +++ beecrypt/include/beecrypt/md4.h	27 Sep 2014 15:47:39 -0000	1.1.1.1.4.1
  @@ -98,8 +98,8 @@
    * \brief This function should be used to pass successive blocks of data
    *  to be hashed.
    * \param mp The hash function's parameter block.
  - * \param data
  - * \param size
  + * \param data	octets
  + * \param size	no. of octets
    * \retval 0 on success.
    */
   BEECRYPTAPI
  @@ .
  patch -p0 <<'@@ .'
  Index: beecrypt/include/beecrypt/md5.h
  ============================================================================
  $ cvs diff -u -r1.1.1.1 -r1.1.1.1.4.1 md5.h
  --- beecrypt/include/beecrypt/md5.h	29 Apr 2010 16:54:27 -0000	1.1.1.1
  +++ beecrypt/include/beecrypt/md5.h	27 Sep 2014 15:47:39 -0000	1.1.1.1.4.1
  @@ -96,8 +96,8 @@
    * \brief This function should be used to pass successive blocks of data
    *  to be hashed.
    * \param mp The hash function's parameter block.
  - * \param data
  - * \param size
  + * \param data	octets
  + * \param size	no. of octets
    * \retval 0 on success.
    */
   BEECRYPTAPI
  @@ .
  patch -p0 <<'@@ .'
  Index: beecrypt/include/beecrypt/pkcs1.h
  ============================================================================
  $ cvs diff -u -r1.1.1.1 -r1.1.1.1.4.1 pkcs1.h
  --- beecrypt/include/beecrypt/pkcs1.h	29 Apr 2010 16:54:27 -0000	1.1.1.1
  +++ beecrypt/include/beecrypt/pkcs1.h	27 Sep 2014 15:47:39 -0000	1.1.1.1.4.1
  @@ -34,8 +34,8 @@
   
   /*!\brief This function computes the digest, and encodes it it according to PKCS#1 \
                for signing
    * \param ctxt The hash function context
  - * \param emdata
  - * \param emsize
  + * \param emdata	octets
  + * \param emsize	no. of octets
    */
   BEECRYPTAPI
   int pkcs1_emsa_encode_digest(hashFunctionContext* ctxt, byte* emdata, size_t \
emsize);  @@ .
  patch -p0 <<'@@ .'
  Index: beecrypt/include/beecrypt/ripemd128.h
  ============================================================================
  $ cvs diff -u -r1.1.1.1 -r1.1.1.1.4.1 ripemd128.h
  --- beecrypt/include/beecrypt/ripemd128.h	29 Apr 2010 16:54:26 -0000	1.1.1.1
  +++ beecrypt/include/beecrypt/ripemd128.h	27 Sep 2014 15:47:39 -0000	1.1.1.1.4.1
  @@ -94,8 +94,8 @@
    * \brief This function should be used to pass successive blocks of data 
    *  to be hashed.
    * \param mp The hash function's parameter block.
  - * \param data
  - * \param size
  + * \param data	octets
  + * \param size	no. of octets
    * \retval 0 on success.
    */
   BEECRYPTAPI
  @@ .
  patch -p0 <<'@@ .'
  Index: beecrypt/include/beecrypt/ripemd160.h
  ============================================================================
  $ cvs diff -u -r1.1.1.1 -r1.1.1.1.4.1 ripemd160.h
  --- beecrypt/include/beecrypt/ripemd160.h	29 Apr 2010 16:54:26 -0000	1.1.1.1
  +++ beecrypt/include/beecrypt/ripemd160.h	27 Sep 2014 15:47:39 -0000	1.1.1.1.4.1
  @@ -94,8 +94,8 @@
    * \brief This function should be used to pass successive blocks of data 
    *  to be hashed.
    * \param mp The hash function's parameter block.
  - * \param data
  - * \param size
  + * \param data	octets
  + * \param size	no. of octets
    * \retval 0 on success.
    */
   BEECRYPTAPI
  @@ .
  patch -p0 <<'@@ .'
  Index: beecrypt/include/beecrypt/ripemd256.h
  ============================================================================
  $ cvs diff -u -r1.1.1.1 -r1.1.1.1.4.1 ripemd256.h
  --- beecrypt/include/beecrypt/ripemd256.h	29 Apr 2010 16:54:26 -0000	1.1.1.1
  +++ beecrypt/include/beecrypt/ripemd256.h	27 Sep 2014 15:47:39 -0000	1.1.1.1.4.1
  @@ -94,8 +94,8 @@
    * \brief This function should be used to pass successive blocks of data 
    *  to be hashed.
    * \param mp The hash function's parameter block.
  - * \param data
  - * \param size
  + * \param data	octets
  + * \param size	no. of octets
    * \retval 0 on success.
    */
   BEECRYPTAPI
  @@ .
  patch -p0 <<'@@ .'
  Index: beecrypt/include/beecrypt/ripemd320.h
  ============================================================================
  $ cvs diff -u -r1.1.1.1 -r1.1.1.1.4.1 ripemd320.h
  --- beecrypt/include/beecrypt/ripemd320.h	29 Apr 2010 16:54:27 -0000	1.1.1.1
  +++ beecrypt/include/beecrypt/ripemd320.h	27 Sep 2014 15:47:39 -0000	1.1.1.1.4.1
  @@ -94,8 +94,8 @@
    * \brief This function should be used to pass successive blocks of data 
    *  to be hashed.
    * \param mp The hash function's parameter block.
  - * \param data
  - * \param size
  + * \param data	octets
  + * \param size	no. of octets
    * \retval 0 on success.
    */
   BEECRYPTAPI
  @@ .
  patch -p0 <<'@@ .'
  Index: beecrypt/include/beecrypt/sha1.h
  ============================================================================
  $ cvs diff -u -r1.1.1.1 -r1.1.1.1.4.1 sha1.h
  --- beecrypt/include/beecrypt/sha1.h	29 Apr 2010 16:54:26 -0000	1.1.1.1
  +++ beecrypt/include/beecrypt/sha1.h	27 Sep 2014 15:47:39 -0000	1.1.1.1.4.1
  @@ -96,8 +96,8 @@
    * \brief This function should be used to pass successive blocks of data 
    *  to be hashed.
    * \param sp The hash function's parameter block.
  - * \param data
  - * \param size
  + * \param data	octets
  + * \param size	no. of octets
    * \retval 0 on success.
    */
   BEECRYPTAPI
  @@ .
  patch -p0 <<'@@ .'
  Index: beecrypt/include/beecrypt/sha224.h
  ============================================================================
  $ cvs diff -u -r1.1.1.1 -r1.1.1.1.4.1 sha224.h
  --- beecrypt/include/beecrypt/sha224.h	29 Apr 2010 16:54:27 -0000	1.1.1.1
  +++ beecrypt/include/beecrypt/sha224.h	27 Sep 2014 15:47:39 -0000	1.1.1.1.4.1
  @@ -95,8 +95,8 @@
    * \brief This function should be used to pass successive blocks of data
    *  to be hashed.
    * \param sp The hash function's parameter block.
  - * \param data
  - * \param size
  + * \param data	octets
  + * \param size	no. of octets
    * \retval 0 on success.
    */
   BEECRYPTAPI
  @@ .
  patch -p0 <<'@@ .'
  Index: beecrypt/include/beecrypt/sha256.h
  ============================================================================
  $ cvs diff -u -r1.1.1.1 -r1.1.1.1.4.1 sha256.h
  --- beecrypt/include/beecrypt/sha256.h	29 Apr 2010 16:54:26 -0000	1.1.1.1
  +++ beecrypt/include/beecrypt/sha256.h	27 Sep 2014 15:47:39 -0000	1.1.1.1.4.1
  @@ -95,8 +95,8 @@
    * \brief This function should be used to pass successive blocks of data
    *  to be hashed.
    * \param sp The hash function's parameter block.
  - * \param data
  - * \param size
  + * \param data	octets
  + * \param size	no. of octets
    * \retval 0 on success.
    */
   BEECRYPTAPI
  @@ .
  patch -p0 <<'@@ .'
  Index: beecrypt/include/beecrypt/sha384.h
  ============================================================================
  $ cvs diff -u -r1.1.1.1 -r1.1.1.1.4.1 sha384.h
  --- beecrypt/include/beecrypt/sha384.h	29 Apr 2010 16:54:26 -0000	1.1.1.1
  +++ beecrypt/include/beecrypt/sha384.h	27 Sep 2014 15:47:39 -0000	1.1.1.1.4.1
  @@ -95,8 +95,8 @@
    * \brief This function should be used to pass successive blocks of data
    *  to be hashed.
    * \param sp The hash function's parameter block.
  - * \param data
  - * \param size
  + * \param data	octets
  + * \param size	no. of octets
    * \retval 0 on success.
    */
   BEECRYPTAPI
  @@ .
  patch -p0 <<'@@ .'
  Index: beecrypt/include/beecrypt/sha512.h
  ============================================================================
  $ cvs diff -u -r1.1.1.1 -r1.1.1.1.4.1 sha512.h
  --- beecrypt/include/beecrypt/sha512.h	29 Apr 2010 16:54:27 -0000	1.1.1.1
  +++ beecrypt/include/beecrypt/sha512.h	27 Sep 2014 15:47:39 -0000	1.1.1.1.4.1
  @@ -95,8 +95,8 @@
    * \brief This function should be used to pass successive blocks of data
    *  to be hashed.
    * \param sp The hash function's parameter block.
  - * \param data
  - * \param size
  + * \param data	octets
  + * \param size	no. of octets
    * \retval 0 on success.
    */
   BEECRYPTAPI
  @@ .
______________________________________________________________________
RPM Package Manager                                    http://rpm5.org
CVS Sources Repository                                rpm-cvs@rpm5.org


[prev in list] [next in list] [prev in thread] [next in thread] 

Configure | About | News | Add a list | Sponsored by KoreLogic