Browse Source

Fix some small typos in documentation

Patrick Pelletier 13 years ago
parent
commit
5b662d6ed8
3 changed files with 3 additions and 3 deletions
  1. 1 1
      crypt.tex
  2. 1 1
      notes/tech0003.txt
  3. 1 1
      src/ciphers/camellia.c

+ 1 - 1
crypt.tex

@@ -4988,7 +4988,7 @@ normally.  The decoded list \textit{out} will point to the very first element of
 
 An invalid decoding will terminate the process, and free the allocated memory automatically.  
 
-\textbf{Note:} the list decoded by this function is \textbf{NOT} in the correct form for der\_encode\_sequence() to use directly.  You will have to first 
+\textbf{Note:} the list decoded by this function is \textbf{NOT} in the correct form for der\_encode\_sequence() to use directly.  You will first
 have to convert the list by first storing all of the siblings in an array then storing all the children as sub-lists of a sequence using the \textit{.data} 
 pointer.  Currently no function in LibTomCrypt provides this ability.
 

+ 1 - 1
notes/tech0003.txt

@@ -47,6 +47,6 @@ as a hash) CAST5 is perhaps a "runner-up" choice.  CAST5 has been around longer
 fairly fast as well.
 
 You can easily accomplish this via the "config.pl" script. Simply answer "n" to all of the ciphers except the one you want
-and then rebuild the library.  [or you can hand edit mycrypt_custom.h]
+and then rebuild the library.  [or you can hand edit tomcrypt_custom.h]
 
 

+ 1 - 1
src/ciphers/camellia.c

@@ -10,7 +10,7 @@
  */
 
 /**
-  @file camellia.ca
+  @file camellia.c
   Implementation by Tom St Denis of Elliptic Semiconductor
 */