mirror of https://github.com/wolfSSL/wolfssl.git
Fix build error and update manuals
parent
9db4ae64b9
commit
3c51d872ea
|
@ -205,7 +205,7 @@ Configuration options need to be changed depending on the certificate type used.
|
|||
<br>
|
||||
|
||||
```
|
||||
$ cd {wolfssl-folder}
|
||||
$ cd <wolfssl-folder>
|
||||
$ ./autogen.sh
|
||||
$ ./configure --enable-ecc --enable-dsa --enable-aesccm CFLAGS="-DWOLFSSL_STATIC_RSA -DHAVE_AES_CBC -DHAVE_DSA -DHAVE_ALL_CURVES -DHAVE_ECC -DNO_RSA"
|
||||
$ make
|
||||
|
@ -213,12 +213,6 @@ $ make
|
|||
Note: Do not forget to specify "-DNO_RSA"
|
||||
|
||||
|
||||
```
|
||||
$ cd <wolfssl-folder>
|
||||
$ ./autogen.sh
|
||||
$ ./configure CFLAGS="-DWOLFSSL_STATIC_RSA -DHAVEAES_CBC"
|
||||
$ make
|
||||
```
|
||||
|
||||
<br>
|
||||
|
||||
|
@ -236,7 +230,7 @@ $ examples/server/server -b -d -i
|
|||
<br>
|
||||
|
||||
```
|
||||
$ cd {wolfssl-folder}
|
||||
$ cd <wolfssl-folder>
|
||||
$ ./autogen.sh
|
||||
$ ./configure --enable-ecc --enable-dsa --enable-aesccm CFLAGS="-DWOLFSSL_STATIC_RSA -DHAVE_AES_CBC -DHAVE_DSA -DHAVE_ALL_CURVES -DHAVE_ECC"
|
||||
$ make
|
||||
|
|
Binary file not shown.
Binary file not shown.
|
@ -210,7 +210,7 @@ static void Tls_client_init(const char* cipherlist)
|
|||
/* load client private key */
|
||||
|
||||
#ifdef USE_ECC_CERT
|
||||
#if defined(WOLFSSL_TLS13) && defined(WOLFSSL_RENESAS_TSIP_TLS) &&
|
||||
#if defined(WOLFSSL_TLS13) && defined(WOLFSSL_RENESAS_TSIP_TLS) && \
|
||||
(WOLFSSL_RENESAS_TSIP_VER >= 115 )
|
||||
if (tsip_set_clientPrivateKeyEnc(
|
||||
g_key_block_data.encrypted_user_ecc256_private_key,
|
||||
|
@ -247,7 +247,7 @@ static void Tls_client_init(const char* cipherlist)
|
|||
printf("client can't set cipher list");
|
||||
}
|
||||
|
||||
#if defined(WOLFSSL_TLS13) && defined(WOLFSSL_RENESAS_TSIP_TLS) &&
|
||||
#if defined(WOLFSSL_TLS13) && defined(WOLFSSL_RENESAS_TSIP_TLS) && \
|
||||
(WOLFSSL_RENESAS_TSIP_VER >= 115)
|
||||
|
||||
if (wolfSSL_CTX_UseSupportedCurve(client_ctx, WOLFSSL_ECC_SECP256R1)
|
||||
|
|
Binary file not shown.
Binary file not shown.
Loading…
Reference in New Issue