aboutsummaryrefslogtreecommitdiff
path: root/api/next
diff options
context:
space:
mode:
authorFilippo Valsorda <filippo@golang.org>2025-05-21 23:55:43 +0200
committerGopher Robot <gobot@golang.org>2025-05-21 16:39:55 -0700
commitedcde86990abd9d7336eee5115b63d8c0863a5dd (patch)
treeed93e44da48842556fa23ce7e7025bfc29cb4d64 /api/next
parentde457fc4ea50cc3ac9dd967161b8bc31b79a26dd (diff)
downloadgo-edcde86990abd9d7336eee5115b63d8c0863a5dd.tar.xz
crypto,hash: add and implement hash.Cloner
Fixes #69521 Co-authored-by: qiulaidongfeng <2645477756@qq.com> Change-Id: I6a6a465652f5ab7e6c9054e826e17df2b8b34e41 Reviewed-on: https://go-review.googlesource.com/c/go/+/675197 Reviewed-by: Roland Shoemaker <roland@golang.org> Auto-Submit: Filippo Valsorda <filippo@golang.org> Reviewed-by: David Chase <drchase@google.com> LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com>
Diffstat (limited to 'api/next')
-rw-r--r--api/next/69521.txt9
1 files changed, 9 insertions, 0 deletions
diff --git a/api/next/69521.txt b/api/next/69521.txt
new file mode 100644
index 0000000000..6974226086
--- /dev/null
+++ b/api/next/69521.txt
@@ -0,0 +1,9 @@
+pkg crypto/sha3, method (*SHA3) Clone() (hash.Cloner, error) #69521
+pkg hash, type Cloner interface { BlockSize, Clone, Reset, Size, Sum, Write } #69521
+pkg hash, type Cloner interface, BlockSize() int #69521
+pkg hash, type Cloner interface, Clone() (Cloner, error) #69521
+pkg hash, type Cloner interface, Reset() #69521
+pkg hash, type Cloner interface, Size() int #69521
+pkg hash, type Cloner interface, Sum([]uint8) []uint8 #69521
+pkg hash, type Cloner interface, Write([]uint8) (int, error) #69521
+pkg hash/maphash, method (*Hash) Clone() (hash.Cloner, error) #69521