expand readme

pull/25/head
Pavol Rusnak 11 years ago
parent 7c13e810fc
commit 0f7c3be5dd

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

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

Loading…
Cancel
Save