wolfssl-examples/signature/rsa_buffer
Chris Conlon 9237d307b5 update copyright to 2020 2020-01-03 16:08:42 -08:00
..
Makefile Add simple RSA sign and verify examples 2018-11-15 08:20:13 +10:00
README Add simple RSA sign and verify examples 2018-11-15 08:20:13 +10:00
rsa_priv_2048.h update copyright to 2020 2020-01-03 16:08:42 -08:00
rsa_pub_2048.h update copyright to 2020 2020-01-03 16:08:42 -08:00
sign.c update copyright to 2020 2020-01-03 16:08:42 -08:00
sign_vfy.sh Add simple RSA sign and verify examples 2018-11-15 08:20:13 +10:00
signature.h Add simple RSA sign and verify examples 2018-11-15 08:20:13 +10:00
verify.c update copyright to 2020 2020-01-03 16:08:42 -08:00

README

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 <message> > signature.h
gcc -o verify verify.c -lwolfssl


To sign a message:

./sign <message>

To verify the signature with the message:

./verify


Best wishes in all your testing!

- The wolfSSL Team