We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 123391f commit 5c72a88Copy full SHA for 5c72a88
sha3/xor_unaligned.go
@@ -16,15 +16,6 @@ func (b *storageBuf) asBytes() *[maxRate]byte {
16
return (*[maxRate]byte)(unsafe.Pointer(b))
17
}
18
19
-//go:nocheckptr
20
-//
21
-// xorInUnaligned intentionally reads the input buffer as an unaligned slice of
22
-// integers. The language spec is not clear on whether that is allowed.
23
-// See:
24
-// https://golang.org/issue/37644
25
-// https://golang.org/issue/37298
26
-// https://golang.org/issue/35381
27
-
28
// xorInUnaligned uses unaligned reads and writes to update d.a to contain d.a
29
// XOR buf.
30
func xorInUnaligned(d *state, buf []byte) {
0 commit comments