wolfssl-examples/pk/rsa-pss
Chris Conlon 9237d307b5 update copyright to 2020 2020-01-03 16:08:42 -08:00
..
Makefile Refactor PK examples out of crypto and mv non-sig specific to pk dir 2019-02-26 11:15:12 -07:00
README.md Refactor PK examples out of crypto and mv non-sig specific to pk dir 2019-02-26 11:15:12 -07:00
rsa-pss.c update copyright to 2020 2020-01-03 16:08:42 -08: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.txt

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