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-19 12:40:58 +02:00
speed-stm32 add speed testing code for stm32 2013-08-18 20:54:18 +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 note about RNG 2013-08-17 14:28:45 +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 add speed testing code for stm32 2013-08-18 20:54:18 +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) 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.