|
||
---|---|---|
.. | ||
Makefile | ||
README.md | ||
rsa_priv_2048.h | ||
rsa_pub_2048.h | ||
sign.c | ||
sign_vfy.sh | ||
signature.h | ||
verify.c |
README.md
Configure and install wolfSSL with these options:
./configure make make install
(if any build issues due to previous installations please run 'ldconfig`)
To compile without Makefile:
gcc -o sign sign.c -lwolfssl ./sign > signature.h gcc -o verify verify.c -lwolfssl
To sign a message:
./sign
To verify the signature with the message:
./verify
Best wishes in all your testing!
- The wolfSSL Team