1
0
mirror of https://github.com/trezor/trezor-firmware.git synced 2024-10-10 01:49:05 +00:00
Go to file
2013-08-21 18:07:02 +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 import sources 2013-08-17 14:20:15 +02:00
aux.h import sources 2013-08-17 14:20:15 +02:00
ecdsa.c param names cleanup 2013-08-19 12:40:58 +02:00
ecdsa.h param names cleanup 2013-08-19 12:40:58 +02:00
LICENSE import sources 2013-08-17 14:20:15 +02:00
Makefile add speed test 2013-08-18 18:45:04 +02:00
rand.c import sources 2013-08-17 14:20:15 +02:00
rand.h import sources 2013-08-17 14:20:15 +02:00
README add more comments to readme 2013-08-21 18:07:02 +02:00
secp256k1.c import sources 2013-08-17 14:20:15 +02:00
secp256k1.h import sources 2013-08-17 14:20:15 +02:00
sha256.c param names cleanup 2013-08-19 12:40:58 +02:00
sha256.h import sources 2013-08-17 14:20:15 +02:00
test-speed.c reorganize code in speed tests 2013-08-21 15:25:48 +02:00
test-verify.c add speed test 2013-08-18 18:45:04 +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) random generator in rand.c is using stdlib's rand() function.
   you should replace this code with one that uses a hardware random
   generator of your microcontroller in production.
   (see speed-stm32/rand.c for such example)