wolfssl-examples/signature/rsa_buffer
Andras Fekete 4c2f96ff64 Clean up wolfSSL path variable name 2024-04-04 13:28:23 -04:00
..
Makefile Clean up wolfSSL path variable name 2024-04-04 13:28:23 -04:00
README.md Phase 1 updates to wolfSSL examples based on testing with wolfSSL 2023-03-25 09:15:11 -05: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

RSA sign and verify example

Configure, build and install wolfSSL

./configure
make
sudo make install

NOTE: if any build issues due to previous installations please run ldconfig

Build and run example

NOTE: The sign_vfy.sh script performs the steps below.

make sign
./sign "This is the message" > signature.h
make verify
./verify

NOTE: To Build and run example without Makefile:

gcc -o sign sign.c -lwolfssl
./sign <message> > signature.h
gcc -o verify verify.c -lwolfssl
./verify

Please contact support@wolfssl.com with any questions or concerns!

Best wishes in all your testing!

  • The wolfSSL Team