This commit introduces two new files: `BENCHMARK_RESULTS.md` and `benchmark_results.txt`, which document the performance metrics of various cryptographic operations, including ECDSA signing, verification, and ECDH key exchange. The results provide insights into operation times, memory allocations, and comparisons with C implementations. Additionally, new test files for ECDSA and ECDH functionalities have been added, ensuring comprehensive coverage and validation of the implemented algorithms. This enhances the overall robustness and performance understanding of the secp256k1 implementation.
13 lines
325 B
Modula-2
13 lines
325 B
Modula-2
module p256k1.mleku.dev
|
|
|
|
go 1.21
|
|
|
|
require github.com/minio/sha256-simd v1.0.1
|
|
|
|
require (
|
|
github.com/klauspost/cpuid/v2 v2.2.3 // indirect
|
|
github.com/templexxx/cpu v0.0.1 // indirect
|
|
github.com/templexxx/xhex v0.0.0-20200614015412-aed53437177b // indirect
|
|
golang.org/x/sys v0.0.0-20220704084225-05e143d24a9e // indirect
|
|
)
|