wolfssl-examples/signature/rsa_vfy_only
tim-weller-wolfssl 013a6da63d Phase 1 updates to wolfSSL examples based on testing with wolfSSL
release v5.5.4-stable.  Changes include minor build fixes and README
updates.
2023-03-25 09:15:11 -05:00
..
Makefile Phase 1 updates to wolfSSL examples based on testing with wolfSSL 2023-03-25 09:15:11 -05:00
README.md Phase 1 updates to wolfSSL examples based on testing with wolfSSL 2023-03-25 09:15:11 -05:00
verify.c Getting files to run and pass nightly-CDT test 2021-07-06 13:57:19 -06:00

README.md

RSA Verify-only example

Configure, build and install wolfSSL

./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
sudo make install

NOTE: If any build issues due to previous installations please run 'ldconfig`

Build and run example

make
./verify

NOTE: To compile without Makefile:

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

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

Best wishes in all your testing!

  • The wolfSSL Team