Fix crypto/cipher.xorWords removed

This commit is contained in:
世界 2023-02-02 11:50:33 +08:00
parent 2c20845ada
commit e3123545f2
No known key found for this signature in database
GPG key ID: CD109927C34A63C4
2 changed files with 13 additions and 4 deletions

View file

@ -1,7 +1,7 @@
//go:build go1.20
package shadowaead_2022
import _ "unsafe"
import "crypto/subtle"
//go:linkname xorWords crypto/cipher.xorWords
//go:noescape
func xorWords(dst, a, b []byte)
var xorWords = subtle.XORBytes

View file

@ -0,0 +1,9 @@
//go:build !go1.20
package shadowaead_2022
import _ "unsafe"
//go:linkname xorWords crypto/cipher.xorWords
//go:noescape
func xorWords(dst, a, b []byte)