tests/thirdparty: add crypto/internal/bigmod (#355)

Add test case for avo generator in standard library crypto/internal/bigmod.

https://github.com/golang/go/tree/go1.20rc2/src/crypto/internal/bigmod
https://golang.org/cl/452095
https://words.filippo.io/dispatches/go-1-20-cryptography/

Closes #354
This commit is contained in:
Michael McLoughlin
2023-01-07 13:17:16 -08:00
committed by GitHub
parent 67039b7ed9
commit 12b5abca55
5 changed files with 133 additions and 18 deletions

View File

@@ -749,9 +749,39 @@
"stars": 107376
},
"default_branch": "master",
"version": "go1.19",
"version": "go1.20rc2",
"packages": [
{
"pkg": "src/crypto/internal/bigmod",
"root": ".",
"module": "src/crypto/internal/bigmod/_asm/go.mod",
"setup": [
{
"name": "Compile Go Toolchain",
"dir": "src",
"commands": [
"./make.bash"
]
}
],
"generate": [
{
"commands": [
"env --unset=GOROOT ./bin/go generate -v -x ./src/crypto/internal/bigmod/_asm"
]
}
],
"test": [
{
"commands": [
"env --unset=GOROOT ./bin/go test crypto/..."
]
}
]
},
{
"pkg": "src/crypto/internal/edwards25519",
"root": ".",
"module": "src/crypto/internal/edwards25519/field/_asm/go.mod",
"setup": [
{
@@ -764,9 +794,8 @@
],
"generate": [
{
"dir": "src/crypto/internal/edwards25519/field/_asm",
"commands": [
"go generate -v -x"
"env --unset=GOROOT ./bin/go generate -v -x ./src/crypto/internal/edwards25519/field/_asm"
]
}
],