wolfssl-examples/pk/rsa-pss
Lealem Amedie be264f0511 Adding documentation where needed. Made changes to code to assure files build and implement good coding practices 2021-06-29 16:02:52 -06: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 Adding documentation where needed. Made changes to code to assure files build and implement good coding practices 2021-06-29 16:02:52 -06: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