1
0
mirror of https://github.com/trezor/trezor-firmware.git synced 2024-11-13 02:58:57 +00:00

expand readme

This commit is contained in:
Pavol Rusnak 2013-08-21 20:05:25 +02:00
parent 7c13e810fc
commit 0f7c3be5dd
2 changed files with 11 additions and 1 deletions

View File

@ -8,7 +8,7 @@ all: test-speed test-verify
$(CC) $(CFLAGS) -o $@ -c $<
test-speed: test-speed.o $(OBJS)
gcc test-speed.o $(OBJS) -o test-speed -lcrypto
gcc test-speed.o $(OBJS) -o test-speed
test-verify: test-verify.o $(OBJS)
gcc test-verify.o $(OBJS) -o test-verify -lcrypto

10
README
View File

@ -14,3 +14,13 @@ 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)
c) 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)
d) directory speed-stm32 contains project for deploying the code
on STM32 microcontroller and checking signing speed there