sm2 arm64

This commit is contained in:
Emman 2021-12-20 12:52:51 +08:00
parent cbbe1e8229
commit 659facc2c4
3 changed files with 1669 additions and 4 deletions

View File

@ -7,8 +7,8 @@
// 256-bit primes" // 256-bit primes"
// https://link.springer.com/article/10.1007%2Fs13389-014-0090-x // https://link.springer.com/article/10.1007%2Fs13389-014-0090-x
// https://eprint.iacr.org/2013/816.pdf // https://eprint.iacr.org/2013/816.pdf
//go:build amd64 //go:build amd64 || arm64
// +build amd64 // +build amd64 arm64
package sm2 package sm2

1665
sm2/p256_asm_arm64.s Normal file

File diff suppressed because it is too large Load Diff

View File

@ -1,5 +1,5 @@
//go:build !amd64 //go:build !amd64 && !arm64
// +build !amd64 // +build !amd64,!arm64
package sm2 package sm2