1
0
mirror of https://github.com/trezor/trezor-firmware.git synced 2024-10-10 01:49:05 +00:00
Go to file
2013-09-10 21:10:07 +02:00
speed-stm32 reorganize code in speed tests 2013-08-21 15:25:48 +02:00
.gitignore add speed test 2013-08-18 18:45:04 +02:00
AUTHORS import sources 2013-08-17 14:20:15 +02:00
aux.c cleanup 2013-09-10 01:41:10 +02:00
aux.h import sources 2013-08-17 14:20:15 +02:00
ecdsa.c use sha2 implementation by Aaron D. Gifford 2013-09-10 21:10:07 +02:00
ecdsa.h ecdsa_get_public_key and ecdsa_verify methods 2013-09-09 17:52:25 +02:00
LICENSE import sources 2013-08-17 14:20:15 +02:00
Makefile use sha2 implementation by Aaron D. Gifford 2013-09-10 21:10:07 +02:00
rand.c use /dev/urandom in example 2013-08-21 20:26:00 +02:00
rand.h use /dev/urandom in example 2013-08-21 20:26:00 +02:00
README use /dev/urandom in example 2013-08-21 20:26:00 +02:00
secp256k1.c import sources 2013-08-17 14:20:15 +02:00
secp256k1.h ecdsa_get_public_key and ecdsa_verify methods 2013-09-09 17:52:25 +02:00
sha2.c use sha2 implementation by Aaron D. Gifford 2013-09-10 21:10:07 +02:00
sha2.h use sha2 implementation by Aaron D. Gifford 2013-09-10 21:10:07 +02:00
test-speed.c reorganize code in speed tests 2013-08-21 15:25:48 +02:00
test-verify.c ecdsa_get_public_key and ecdsa_verify methods 2013-09-09 17:52:25 +02:00

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-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
   on STM32 microcontroller and checking signing speed there