diff options
author | Werner Koch <[email protected]> | 1999-08-31 15:30:12 +0000 |
---|---|---|
committer | Werner Koch <[email protected]> | 1999-08-31 15:30:12 +0000 |
commit | 88a916cdd40e43312ffcde6bb1c157fe1c122f74 (patch) | |
tree | d5298986a0bad2aff797fd981f99fb3cb6f99ba9 /doc/HACKING | |
parent | See ChangeLog: Mon Aug 30 20:38:33 CEST 1999 Werner Koch (diff) | |
download | gnupg-88a916cdd40e43312ffcde6bb1c157fe1c122f74.tar.gz gnupg-88a916cdd40e43312ffcde6bb1c157fe1c122f74.zip |
See ChangeLog: Tue Aug 31 17:20:44 CEST 1999 Werner Koch
Diffstat (limited to 'doc/HACKING')
-rw-r--r-- | doc/HACKING | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/doc/HACKING b/doc/HACKING index bc06a7064..6f4c9ffd8 100644 --- a/doc/HACKING +++ b/doc/HACKING @@ -46,7 +46,7 @@ of the CVS head revision is also available. See rsync(1) and try Special Tools ============= -Documention is based on the docbook DTD. Actually we have only the +Documentation is based on the docbook DTD. Actually we have only the man page for now. To build a man page you need the docbook-to-man tool and all the other thinks needed for SGML processing. Debian comes with the docbook tools and you only need this docbook-to-man @@ -203,7 +203,7 @@ How to use the cipher functions cipher/cipher.c implements the interface to symmetric encryption functions. As usual you have a function to open a cipher (which returns a handle to be used with all other functions), some functions to set the key and other stuff and -a encrypt and decrypt function which does the real work. YOu probably know +a encrypt and decrypt function which does the real work. You probably know how to work with files - so it should really be easy to work with these functions. Here is an example: @@ -211,7 +211,7 @@ functions. Here is an example: hd = cipher_open( CIPHER_ALGO_TWOFISH, CIPHER_MODE_CFB, 0 ); if( !hd ) - oops( use other funtion to check for the real error ); + oops( use other function to check for the real error ); rc = cipher_setkey( hd, key256bit, 32 ) ) if( rc ) oops( weak key or something like this ); |