about summary refs log tree commit diff
path: root/manual/crypt.texi
diff options
context:
space:
mode:
authorUlrich Drepper <drepper@redhat.com>2001-01-17 16:54:30 +0000
committerUlrich Drepper <drepper@redhat.com>2001-01-17 16:54:30 +0000
commit2244ddf2bfc9a524d8a617881c78ecb1d85f3544 (patch)
tree9d9c52ff7dafcef4c28512cb367d173c75d7eae5 /manual/crypt.texi
parent17abb551cedc46690e13e73d43100e68b631c02f (diff)
downloadglibc-2244ddf2bfc9a524d8a617881c78ecb1d85f3544.tar.gz
glibc-2244ddf2bfc9a524d8a617881c78ecb1d85f3544.tar.xz
glibc-2244ddf2bfc9a524d8a617881c78ecb1d85f3544.zip
Update.
2001-01-17  Ulrich Drepper  <drepper@redhat.com>

	* manual/Makefile (chapters): Add debug.
	* manual/debug.texi: New file.
	* manual/examples/execinfo.c: New file.
	Patch by suckfish@ihug.co.nz.
Diffstat (limited to 'manual/crypt.texi')
-rw-r--r--manual/crypt.texi10
1 files changed, 5 insertions, 5 deletions
diff --git a/manual/crypt.texi b/manual/crypt.texi
index 60b065774f..73f66f6553 100644
--- a/manual/crypt.texi
+++ b/manual/crypt.texi
@@ -1,6 +1,6 @@
 @c This node must have no pointers.
 @node Cryptographic Functions
-@c @node Cryptographic Functions, , System Configuration, Top
+@c @node Cryptographic Functions, Debugging Support, System Configuration, Top
 @chapter DES Encryption and Password Handling
 @c %MENU% DES encryption and password handling
 
@@ -31,7 +31,7 @@ It also provides support for Secure RPC, and some library functions that
 can be used to perform normal DES encryption.
 
 The add-on is not included in the main distribution of the GNU C library
-because some governments, most notably those of France, Russia, 
+because some governments, most notably those of France, Russia,
 and the US, have very restrictive rules governing the distribution and
 use of encryption software.  The first section below tries to describe some
 of those rules.
@@ -213,7 +213,7 @@ The Data Encryption Standard is described in the US Government Federal
 Information Processing Standards (FIPS) 46-3 published by the National
 Institute of Standards and Technology.  The DES has been very thoroughly
 analysed since it was developed in the late 1970s, and no new
-significant flaws have been found.  
+significant flaws have been found.
 
 However, the DES uses only a 56-bit key (plus 8 parity bits), and a
 machine has been built in 1998 which can search through all possible
@@ -269,13 +269,13 @@ stored in a @code{char}, but there are no parity bits in @var{block}.
 
 These are reentrant versions of @code{setkey} and @code{encrypt}.  The
 only difference is the extra parameter, which stores the expanded
-version of @var{key}.  Before calling @code{setkey_r} the first time, 
+version of @var{key}.  Before calling @code{setkey_r} the first time,
 @code{data->initialised} must be cleared to zero.
 @end deftypefun
 
 The @code{setkey_r} and @code{encrypt_r} functions are GNU extensions.
 @code{setkey}, @code{encrypt}, @code{setkey_r}, and @code{encrypt_r} are
-defined in @file{crypt.h}.  
+defined in @file{crypt.h}.
 
 If the @code{crypt} add-on is not used to build the library, programs
 that use these four functions will crash when the functions are called.