wolfssl-examples/signature
David Garske 68c534c867 Added RSA support to signature example. 2015-11-16 11:15:14 -08:00
..
Makefile wolfSSL signature example. This example takes a file and creates a signature for it using the "wc_Signature*" wrapper functions. This example generates a new ECC key and dumps the key values, then creates a signature from a hash of the file and signs it. Then it performs a verification using the signature and public key. 2015-11-12 09:54:15 -08:00
README.md wolfSSL signature example. This example takes a file and creates a signature for it using the "wc_Signature*" wrapper functions. This example generates a new ECC key and dumps the key values, then creates a signature from a hash of the file and signs it. Then it performs a verification using the signature and public key. 2015-11-12 09:54:15 -08:00
signature.c Added RSA support to signature example. 2015-11-16 11:15:14 -08:00

README.md

wolfSSL Signature Example

This directory contains:

A simple example of using wolfSSL to sign and verify binary data using SHA512 and ECC256.

This example creates a signature from a hash of the file and signs it using a generated ECC key. Then it performs a verification using the signature and public key.

Compiling and Running the Example

$ make
$ ./firmware [filename]