diff options
author | Wojciech Meyer <wojciech.meyer@gmail.com> | 2011-12-29 03:13:41 +0000 |
---|---|---|
committer | Wojciech Meyer <wojciech.meyer@gmail.com> | 2011-12-29 03:13:41 +0000 |
commit | b33b2cc8b9fa98dc21935a931f9e591cd8b05b8d (patch) | |
tree | c00643914dd18bb4aafccaa0dc20ae8b6b4552b0 /stdlib | |
parent | 3542301ef7485d47562fba5c22185d90c70aa8aa (diff) |
Fix PR#5454: Update docs
git-svn-id: http://caml.inria.fr/svn/ocaml/trunk@11973 f963ae5c-01c2-4b8c-9fe0-0dff7051ff02
Diffstat (limited to 'stdlib')
-rw-r--r-- | stdlib/digest.mli | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/stdlib/digest.mli b/stdlib/digest.mli index ac41153d9..01a5f8ba8 100644 --- a/stdlib/digest.mli +++ b/stdlib/digest.mli @@ -18,7 +18,10 @@ This module provides functions to compute 128-bit ``digests'' of arbitrary-length strings or files. The digests are of cryptographic quality: it is very hard, given a digest, to forge a string having - that digest. The algorithm used is MD5. + that digest. The algorithm used is MD5. This module should not be + used for secure and sensitive cryptographic applications. For these + kind of applications more recent and stronger cryptographic + primitives should be used instead. *) type t = string |