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 df79a330e6
pave the way for RFC6979
11 years ago
speed-stm32
.gitignore
AUTHORS
LICENSE
Makefile
README
aux.c
aux.h
ecdsa.c
ecdsa.h
rand.c
rand.h
secp256k1.c
secp256k1.h
sha256.c
sha256.h
test-speed.c
test-verify.c

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