wolfssl-examples/pk/rsa-pss
Sean Parkinson 223a172d57 RSA-PSS example: fixup
Separate out steps.
Hash the message before signing and verifying.
2025-03-18 11:07:11 +10:00
..
Makefile RSA-PSS example: fixup 2025-03-18 11:07:11 +10:00
README.md RSA-PSS example: fixup 2025-03-18 11:07:11 +10:00
rsa-pss.c RSA-PSS example: fixup 2025-03-18 11:07:11 +10:00

README.md

RSA PSS Example

Building

Build wolfSSL

./configure --enable-rsapss --enable-keygen
make
sudo make install

Build rsa-pss

make

Usage

Creates a key-pair, exports public key to rsa-public.der and signs message in variable szMessage. ./rsa-pss -s sign.bin

Uses public key at rsa-public.der to verify signed data. ./rsa-pss -v sign.bin