Add links to examples.

pull/293/head
David Garske 2022-02-15 15:27:45 -08:00
parent 894059f675
commit aa701a77d3
2 changed files with 7 additions and 3 deletions

View File

@ -1,11 +1,13 @@
# BTLE Examples
BTLE / Lightweight Secure Transport Example:
BTLE / Lightweight Secure Transport Examples:
Bluetooth Low Energy (BTLE) is a lightweight / low power wireless protocol. Its supported by Apple iPhone 4s and later and most Android phones. It operates in the 2.4GHz spectrum and has 3 advertising channels and 37 data channels.
## Elliptic Curve Integrated Encryption Scheme (ECIES) Example
See [ecies](ecies) folder and `README.md` for example details.
wolfSSL ECIES support:
* SEC1: `--enable-eccencrypt=yes`
* ISO 18033: `--enable-eccencrypt=iso18033`
@ -20,10 +22,12 @@ ECIES Features:
## TLS v1.3 Example
See [tls](tls) folder and `README.md` for example details.
TLS v1.3 Features:
* Encryption: AES-GCM or ChaCha20/Poly1305
* Authentication: Standard X.509 certificates against long term key (recommend ECC)
* Resumption: Session Tickets.
* Resumption: Session Tickets
## BTLE Simulator

View File

@ -17,7 +17,7 @@ See `BTLESecureMessageExchange.pdf` for details.
The wolfSSL library must be built and installed using:
```
./configure --enable-ecc --enable-eccencrypt --enable-hkdf
./configure --enable-eccencrypt
make
make check
sudo make install