diff --git a/docs/reference/hacl/hash/index.md b/docs/reference/hacl/hash/index.md index 05036d81..d3b629d3 100644 --- a/docs/reference/hacl/hash/index.md +++ b/docs/reference/hacl/hash/index.md @@ -7,6 +7,8 @@ When you are receiving a message chunk-by-chunk, it may be more efficient to use The streaming API has roughly three phases: init, update, and finish. You create a context element, call update as often as you need, and then finalize (and cleanup) to obtain a digest. +Note: HACL Packages supports MD5 but does not document it here because it should not be used. + ```{toctree} :caption: "Algorithms" @@ -14,6 +16,5 @@ blake2/index sha3 sha2 sha1 -md5 ``` diff --git a/docs/reference/hacl/hash/md5.md b/docs/reference/hacl/hash/md5.md deleted file mode 100644 index 974e2d9c..00000000 --- a/docs/reference/hacl/hash/md5.md +++ /dev/null @@ -1,14 +0,0 @@ -# MD5 - -**Caution**: MD5 is insecure. Please avoid. - -## API Reference - -### One-Shot - -... - -### Streaming - -... -