1
0
mirror of https://github.com/trezor/trezor-firmware.git synced 2024-10-10 01:49:05 +00:00
Go to file
2013-10-01 18:16:15 +02:00
.gitignore move speed tests to unit testing suite 2013-09-22 15:05:59 +02:00
AUTHORS
bignum.c optimize computations 2013-09-27 15:42:52 +02:00
bignum.h simplify divmod58 2013-09-25 12:39:23 +02:00
bip32.c remove der encoding, introduce 33/65 bytes pubkeys, 64 bytes signature 2013-09-23 21:13:44 +02:00
bip32.h add function for computing addresses 2013-09-20 17:13:24 +02:00
ecdsa.c small cleanup 2013-10-01 18:08:33 +02:00
ecdsa.h replace infinite loops with loops with counters 2013-09-27 15:55:55 +02:00
hmac.c add hmac-sha256/512 2013-09-10 21:47:06 +02:00
hmac.h add hmac-sha256/512 2013-09-10 21:47:06 +02:00
LICENSE
Makefile move speed tests to unit testing suite 2013-09-22 15:05:59 +02:00
rand.c
rand.h
README move speed-stm32 to trezor repo 2013-10-01 18:16:15 +02:00
ripemd160.c add ripemd160 2013-09-16 01:32:56 +02:00
ripemd160.h add ripemd160 2013-09-16 01:32:56 +02:00
secp256k1.c
secp256k1.h refactor code -> bignum.c/h 2013-09-12 03:18:35 +02:00
sha2.c refactor code -> bignum.c/h 2013-09-12 03:18:35 +02:00
sha2.h use sha2 implementation by Aaron D. Gifford 2013-09-10 21:10:07 +02:00
test-openssl.c optimize computations 2013-09-27 15:42:52 +02:00
tests.c add more rfc6979 test vectors by fpgaminer 2013-10-01 16:45:26 +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) unit tests using Check (check.sf.net) are in tests.c

c) tests against OpenSSL are in test-openssl.c