Textual updates from peer review.
parent
1b6974e4ee
commit
b9b85d8efb
|
@ -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
|
||||
|
|
|
@ -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:
|
||||
|
||||
```
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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.
|
||||
|
||||
|
|
Loading…
Reference in New Issue