Textual updates from peer review.
parent
1b6974e4ee
commit
b9b85d8efb
|
@ -4,7 +4,7 @@ LIB_PATH = /usr/local
|
||||||
CFLAGS = -Wall -I$(LIB_PATH)/include
|
CFLAGS = -Wall -I$(LIB_PATH)/include
|
||||||
LIBS = -L$(LIB_PATH)/lib
|
LIBS = -L$(LIB_PATH)/lib
|
||||||
|
|
||||||
# option variables
|
# Flags
|
||||||
DYN_LIB = -lwolfssl
|
DYN_LIB = -lwolfssl
|
||||||
STATIC_LIB =
|
STATIC_LIB =
|
||||||
DEBUG_FLAGS = -g -DDEBUG -DDEBUG_WOLFSSL -DDEBUG_BTLE_IO
|
DEBUG_FLAGS = -g -DDEBUG -DDEBUG_WOLFSSL -DDEBUG_BTLE_IO
|
||||||
|
|
|
@ -19,8 +19,10 @@ The wolfSSL library must be built and installed using:
|
||||||
```
|
```
|
||||||
./configure --enable-ecc --enable-eccencrypt --enable-hkdf
|
./configure --enable-ecc --enable-eccencrypt --enable-hkdf
|
||||||
make
|
make
|
||||||
|
make check
|
||||||
sudo make install
|
sudo make install
|
||||||
```
|
```
|
||||||
|
If downloaded from GitHub you'll also need to run `./autogen.sh`.
|
||||||
|
|
||||||
OR by defining:
|
OR by defining:
|
||||||
|
|
||||||
|
|
|
@ -4,7 +4,7 @@ LIB_PATH = /usr/local
|
||||||
CFLAGS = -Wall -I$(LIB_PATH)/include
|
CFLAGS = -Wall -I$(LIB_PATH)/include
|
||||||
LIBS = -L$(LIB_PATH)/lib
|
LIBS = -L$(LIB_PATH)/lib
|
||||||
|
|
||||||
# option variables
|
# Flags
|
||||||
DYN_LIB = -lwolfssl
|
DYN_LIB = -lwolfssl
|
||||||
STATIC_LIB =
|
STATIC_LIB =
|
||||||
DEBUG_FLAGS = -g -DDEBUG -DDEBUG_WOLFSSL -DDEBUG_BTLE_IO
|
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
|
./configure --enable-tls13
|
||||||
make
|
make
|
||||||
|
make check
|
||||||
sudo make install
|
sudo make install
|
||||||
```
|
```
|
||||||
|
|
||||||
|
If downloaded from GitHub you'll also need to run `./autogen.sh`.
|
||||||
|
|
||||||
### Usage
|
### 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.
|
The client will attempt STDIN input and the server will echo. Use "exit" to close the connection.
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue