Textual updates from peer review.

pull/293/head
David Garske 2022-02-15 14:20:04 -08:00
parent 1b6974e4ee
commit b9b85d8efb
4 changed files with 9 additions and 4 deletions

View File

@ -4,7 +4,7 @@ LIB_PATH = /usr/local
CFLAGS = -Wall -I$(LIB_PATH)/include
LIBS = -L$(LIB_PATH)/lib
# option variables
# Flags
DYN_LIB = -lwolfssl
STATIC_LIB =
DEBUG_FLAGS = -g -DDEBUG -DDEBUG_WOLFSSL -DDEBUG_BTLE_IO

View File

@ -19,9 +19,11 @@ The wolfSSL library must be built and installed using:
```
./configure --enable-ecc --enable-eccencrypt --enable-hkdf
make
make check
sudo make install
```
If downloaded from GitHub you'll also need to run `./autogen.sh`.
OR by defining:
```

View File

@ -4,7 +4,7 @@ LIB_PATH = /usr/local
CFLAGS = -Wall -I$(LIB_PATH)/include
LIBS = -L$(LIB_PATH)/lib
# option variables
# Flags
DYN_LIB = -lwolfssl
STATIC_LIB =
DEBUG_FLAGS = -g -DDEBUG -DDEBUG_WOLFSSL -DDEBUG_BTLE_IO

View File

@ -9,12 +9,15 @@ The wolfSSL library must be built and installed using:
```
./configure --enable-tls13
make
make check
sudo make install
```
If downloaded from GitHub you'll also need to run `./autogen.sh`.
### Usage
Use two consoles run the examples to send a test message securely. The server will present an ECC server certificate and the client will validate it.
Use two consoles to run the examples to send a test message securely. The server will present an ECC server certificate and the client will validate it.
The client will attempt STDIN input and the server will echo. Use "exit" to close the connection.