libgcrypt/doc (ChangeLog gcrypt.texi)

cvs user mo cvs at cvs.gnupg.org
Thu Feb 3 20:33:34 CET 2005


    Date: Thursday, February 3, 2005 @ 20:42:56
  Author: mo
    Path: /cvs/libgcrypt/libgcrypt/doc

Modified: ChangeLog gcrypt.texi

2005-02-03  Moritz Schulte  <moritz at g10code.com>

	* gcrypt.texi: Fixed several typos; thanks to Michele Baldessari.


-------------+
 ChangeLog   |    4 ++++
 gcrypt.texi |   26 +++++++++++++-------------
 2 files changed, 17 insertions(+), 13 deletions(-)


Index: libgcrypt/doc/ChangeLog
diff -u libgcrypt/doc/ChangeLog:1.42 libgcrypt/doc/ChangeLog:1.43
--- libgcrypt/doc/ChangeLog:1.42	Tue Jan  4 21:49:00 2005
+++ libgcrypt/doc/ChangeLog	Thu Feb  3 20:42:56 2005
@@ -1,3 +1,7 @@
+2005-02-03  Moritz Schulte  <moritz at g10code.com>
+
+	* gcrypt.texi: Fixed several typos; thanks to Michele Baldessari.
+
 2005-01-04  Werner Koch  <wk at g10code.com>
 
 	* gcrypt.texi: Updated to use @copying.  Fixed list of copyright
Index: libgcrypt/doc/gcrypt.texi
diff -u libgcrypt/doc/gcrypt.texi:1.44 libgcrypt/doc/gcrypt.texi:1.45
--- libgcrypt/doc/gcrypt.texi:1.44	Tue Jan  4 21:49:00 2005
+++ libgcrypt/doc/gcrypt.texi	Thu Feb  3 20:42:56 2005
@@ -1200,7 +1200,7 @@
 
 Register a new cipher module whose specification can be found in
 @var{cipher}.  On success, a new algorithm ID is stored in
- at var{algorithm_id} and a pointer representhing this module is stored
+ at var{algorithm_id} and a pointer representing this module is stored
 in @var{module}.
 @end deftypefun
 
@@ -1503,7 +1503,7 @@
 paradigm and is in that similar to other building blocks provided by
 @acronym{Libgcrypt}.
 
-For convenience reasons, a few cyclic redudancy check value operations
+For convenience reasons, a few cyclic redundancy check value operations
 are also supported.
 
 @menu
@@ -1612,7 +1612,7 @@
 The function responsible for `finalizing' a message digest context.
 See below for an explanation of this type.
 @item gcry_md_read_t read
-The function reponsible for reading out a message digest result.  See
+The function responsible for reading out a message digest result.  See
 below for an explanation of this type.
 @item size_t contextsize
 The size of the algorithm-specific `context', that should be
@@ -1654,7 +1654,7 @@
 
 Register a new digest module whose specification can be found in
 @var{digest}.  On success, a new algorithm ID is stored in
- at var{algorithm_id} and a pointer representhing this module is stored
+ at var{algorithm_id} and a pointer representing this module is stored
 in @var{module}.
 @end deftypefun
 
@@ -2095,7 +2095,7 @@
 The primary name of this algorithm.
 @item char **aliases
 A list of strings that are `aliases' for the algorithm.  The list
-musdt be terminanted with a NULL element.
+must be terminated with a NULL element.
 @item const char *elements_pkey
 String containing the one-letter names of the MPI values contained in
 a public key.
@@ -2113,7 +2113,7 @@
 be included in the `key grip'.
 @item int use
 The bitwise-OR of the following flags, depending on the abilities of
-the algortihm:
+the algorithm:
 @table @code
 @item GCRY_PK_USAGE_SIGN
 The algorithm supports signing and verifying of data.
@@ -2133,13 +2133,13 @@
 The function responsible for decrypting data.  See below for a
 description of this type.
 @item gcry_pk_sign_t sign
-The function reponsible for signing data.  See below for a description
+The function responsible for signing data.  See below for a description
 of this type.
 @item gcry_pk_verify_t verify
 The function responsible for verifying that the provided signature
 matches the provided data.  See below for a description of this type.
 @item gcry_pk_get_nbits_t get_nbits
-The function reponsible for returning the number of bits of a provided
+The function responsible for returning the number of bits of a provided
 key.  See below for a description of this type.
 @end table
 @end deftp
@@ -2188,7 +2188,7 @@
 
 Register a new public key module whose specification can be found in
 @var{pubkey}.  On success, a new algorithm ID is stored in
- at var{algorithm_id} and a pointer representhing this module is stored
+ at var{algorithm_id} and a pointer representing this module is stored
 in @var{module}.
 @end deftypefun
 
@@ -3670,7 +3670,7 @@
 This function tries to resize the memory area pointed to by @var{p} to
 @var{n} bytes.  On success it returns a pointer to the new memory
 area, in an out-of-core condition, it returns NULL.  Depending on
-wether the memory pointed to by @var{p} is secure memory or not,
+whether the memory pointed to by @var{p} is secure memory or not,
 gcry_realloc tries to use secure memory as well.
 @end deftypefun
 
@@ -3699,13 +3699,13 @@
 @bye
 
   /* Version check should be the very first gcry call because it
-     makes sure that constructor functrions are run. */
+     makes sure that constructor functions are run. */
   if (!gcry_check_version (GCRYPT_VERSION))
     die ("version mismatch\n");
   /* Many applications don't require secure memory, so they should
      disable it right away.  There won't be a problem unless one makes
-     use of a feature which requires secure memoery - in that case the
-     process would abort becuase the secmem is not initialized. */
+     use of a feature which requires secure memory - in that case the
+     process would abort because the secmem is not initialized. */
   gcry_control (GCRYCTL_DISABLE_SECMEM, 0);
 
   /* .. add whatever initialization you want, but better don't make calls




More information about the Gnupg-commits mailing list