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.
 
 
 
 
 
 
Go to file
Pavol Rusnak 896905c5c8
remove der encoding, introduce 33/65 bytes pubkeys, 64 bytes signature
11 years ago
speed-stm32 remove der encoding, introduce 33/65 bytes pubkeys, 64 bytes signature 11 years ago
.gitignore
AUTHORS
LICENSE
Makefile
README
bignum.c
bignum.h
bip32.c remove der encoding, introduce 33/65 bytes pubkeys, 64 bytes signature 11 years ago
bip32.h
ecdsa.c remove der encoding, introduce 33/65 bytes pubkeys, 64 bytes signature 11 years ago
ecdsa.h remove der encoding, introduce 33/65 bytes pubkeys, 64 bytes signature 11 years ago
hmac.c
hmac.h
rand.c
rand.h
ripemd160.c
ripemd160.h
secp256k1.c
secp256k1.h
sha2.c
sha2.h
test-openssl.c remove der encoding, introduce 33/65 bytes pubkeys, 64 bytes signature 11 years ago
tests.c remove der encoding, introduce 33/65 bytes pubkeys, 64 bytes signature 11 years ago

README

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
   * 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