wolfssl-examples/pk/srp
Sean Parkinson 037d296724 SRP examples
srp_gen - generates the verifier for username and password
srp_gen does client and server side work to create and verify proofs
2020-06-18 09:25:51 +10:00
..
Makefile SRP examples 2020-06-18 09:25:51 +10:00
README SRP examples 2020-06-18 09:25:51 +10:00
srp.c SRP examples 2020-06-18 09:25:51 +10:00
srp_gen.c SRP examples 2020-06-18 09:25:51 +10:00
srp_params.h SRP examples 2020-06-18 09:25:51 +10:00
srp_store.h SRP examples 2020-06-18 09:25:51 +10:00

README

Shows examples of how to work with SRP.

srp_gen.c show how to generate a verifier to store on the server.
srp.c shows a client and server.

The build option used for wolfSSL is

```
./configure --enable-srp
```

How to use:

```
./srp_gen wolfssl password > srp_store.h

make

./srp wolfssl password
```