You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
trezor-firmware/README

24 lines
646 B

11 years ago
MicroECDSA
==========
Heavily optimized ECDSA (secp256k1) signer for embedded devices.
Distibuted under MIT License.
Notes
-----
a) the signer only understands secp256k1 elliptic curve
b) there are executables:
* test-rfc6979
- check RFC 6979 algorithm for generating deterministic K
11 years ago
* test-speed
- check signing speed (sign 100x and compute speed from duration)
* test-verify
- generate random messages and private keys
- check signature validity against OpenSSL (call verify method)
c) directory speed-stm32 contains project for deploying the code
11 years ago
on STM32 microcontroller and checking signing speed there