wolfssl-examples/signature/rsa_buffer
Lealem Amedie be264f0511 Adding documentation where needed. Made changes to code to assure files build and implement good coding practices 2021-06-29 16:02:52 -06:00
..
Makefile Add simple RSA sign and verify examples 2018-11-15 08:20:13 +10:00
README.md Adding documentation where needed. Made changes to code to assure files build and implement good coding practices 2021-06-29 16:02:52 -06: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.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