From 25d0ffe603885a9c42400b35cb39e93a56a7aa95 Mon Sep 17 00:00:00 2001 From: Keith Randall Date: Thu, 30 Jan 2020 10:49:12 -0800 Subject: [PATCH] doc: document new hash/maphash package Update #36878 Update #28322 Change-Id: I793c7c4dbdd23fdecd715500e90b7cc0cbe4cea5 Reviewed-on: https://go-review.googlesource.com/c/go/+/217099 Reviewed-by: Ian Lance Taylor --- doc/go1.14.html | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/doc/go1.14.html b/doc/go1.14.html index 790a8de447..1f13f227b3 100644 --- a/doc/go1.14.html +++ b/doc/go1.14.html @@ -432,7 +432,13 @@ TODO
hash/maphash

- TODO: https://golang.org/cl/186877: add hashing package for bytes and strings + This new package provides hash functions on byte sequences. + These hash functions are intended to be used to implement hash tables or + other data structures that need to map arbitrary strings or byte + sequences to a uniform distribution of integers. +

+

+ The hash functions are collision-resistant but not cryptographically secure.