wolfssl-examples/signature/rsa_vfy_only
Lealem Amedie c8d596269d Getting files to run and pass nightly-CDT test 2021-07-06 13:57:19 -06:00
..
Makefile Small RSA verification example 2019-03-18 11:43:15 +10:00
README.md Getting files to run and pass nightly-CDT test 2021-07-06 13:57:19 -06:00
verify.c Getting files to run and pass nightly-CDT test 2021-07-06 13:57:19 -06:00

README.md

Configure and install wolfSSL with these options:

./configure --disable-asn --disable-filesystem
--enable-cryptonly --enable-sp=smallrsa2048 --enable-sp-math
--disable-dh --disable-ecc --disable-sha224 --enable-rsavfy
CFLAGS="-DWOLFSSL_PUBLIC_MP" make make install

(if any build issues due to previous installations please run 'ldconfig`)

To compile without Makefile:

gcc -Os -o verify verify.c /usr/local/lib/libwolfssl.a

To verify the signature with the message:

./verify

Best wishes in all your testing!

  • The wolfSSL Team