aboutsummaryrefslogtreecommitdiffstats
path: root/doc
diff options
context:
space:
mode:
Diffstat (limited to 'doc')
-rw-r--r--doc/lispref/text.texi12
1 files changed, 6 insertions, 6 deletions
diff --git a/doc/lispref/text.texi b/doc/lispref/text.texi
index 7ce54f59c69..955ad6130ca 100644
--- a/doc/lispref/text.texi
+++ b/doc/lispref/text.texi
@@ -4710,12 +4710,12 @@ that you have an unaltered copy of that data.
4710SHA-1, SHA-2, SHA-224, SHA-256, SHA-384 and SHA-512. MD5 is the 4710SHA-1, SHA-2, SHA-224, SHA-256, SHA-384 and SHA-512. MD5 is the
4711oldest of these algorithms, and is commonly used in @dfn{message 4711oldest of these algorithms, and is commonly used in @dfn{message
4712digests} to check the integrity of messages transmitted over a 4712digests} to check the integrity of messages transmitted over a
4713network. MD5 is not collision resistant (i.e., it is possible to 4713network. MD5 and SHA-1 are not collision resistant (i.e., it is
4714deliberately design different pieces of data which have the same MD5 4714possible to deliberately design different pieces of data which have
4715hash), so you should not used it for anything security-related. A 4715the same MD5 or SHA-1 hash), so you should not use them for anything
4716similar theoretical weakness also exists in SHA-1. Therefore, for 4716security-related. For security-related applications you should use
4717security-related applications you should use the other hash types, 4717the other hash types, such as SHA-2 (e.g. @code{sha256} or
4718such as SHA-2. 4718@code{sha512}).
4719 4719
4720@defun secure-hash-algorithms 4720@defun secure-hash-algorithms
4721This function returns a list of symbols representing algorithms that 4721This function returns a list of symbols representing algorithms that