Skip to content

Commit a1e3f27

Browse files
author
Jack Tjaden
committed
Fixed broken links in section02.md
1 parent 217c92e commit a1e3f27

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

wolfSSL-Porting/src/section02.md

+6-6
Original file line numberDiff line numberDiff line change
@@ -149,7 +149,7 @@ To enable fastmath, define USE_FAST_MATH and build in ./wolfcrypt/src/tfm.c inst
149149
If the normal malloc(), free(), and possibly realloc() functions are not available, define XMALLOC_USER, then provide custom memory function hooks in ./wolfssl/wolfcrypt/types.h specific to the target environment.
150150

151151
Please read section 5.1.1.1 of the wolfSSL Manual for details about using XMALLOC_USER:
152-
https://wolfssl.com/wolfSSL/Docs-wolfssl-manual-5-portability.html
152+
[Section 5.1.1.1](https://wolfssl.com/wolfSSL/Docs-wolfssl-manual-5-portability.html)
153153

154154
## Time
155155

@@ -172,7 +172,7 @@ wolfSSL can be built without the C standard library to provide a higher level of
172172
Section 2.8, above, covered memory functions. In addition to memory function abstraction, wolfSSL also abstracts string function and math functions, where the specific functions are typically abstracted to a define in the form of X<FUNC>, where <FUNC> is the name of the function being abstracted.
173173

174174
Please read Section 5.1 of the wolfSSL Manual for details:
175-
https://www.wolfssl.com/wolfSSL/Docs-wolfssl-manual-5-portability.html
175+
[Section 5.1](https://www.wolfssl.com/wolfSSL/Docs-wolfssl-manual-5-portability.html)
176176

177177
## Logging
178178

@@ -184,7 +184,7 @@ By default, wolfSSL provides debug output through stderr. In order for debug me
184184
For environments which do not have stderr available, or wish to output debug messages over a different output stream or in a different format, wolfSSL allows applications to register a logging callback.
185185

186186
Please read Section 8.1 of the wolfSSL Manual for details:
187-
https://www.wolfssl.com/wolfSSL/Docs-wolfssl-manual-8-debugging.html
187+
[Section 8.1](https://www.wolfssl.com/wolfSSL/Docs-wolfssl-manual-8-debugging.html)
188188

189189
## Public Key Operations
190190

@@ -201,7 +201,7 @@ RSA encrypt callback
201201
RSA decrypt callback
202202

203203
For full details, please read Section 6.4 of the wolfSSL Manual:
204-
https://www.wolfssl.com/wolfSSL/Docs-wolfssl-manual-6-callbacks.html
204+
[Section 6.4](https://www.wolfssl.com/wolfSSL/Docs-wolfssl-manual-6-callbacks.html)
205205

206206
## Atomic Record Layer Processing
207207

@@ -215,12 +215,12 @@ MAC/encrypt callback function
215215
Decrypt/verify callback function
216216

217217
For full details, please read Section 6.3 of the wolfSSL Manual:
218-
https://www.wolfssl.com/wolfSSL/Docs-wolfssl-manual-6-callbacks.html
218+
[Section 6.3](https://www.wolfssl.com/wolfSSL/Docs-wolfssl-manual-6-callbacks.html)
219219

220220
## Features
221221

222222
Q: When do I need to read this section?
223223
A: When you want to disable features.
224224

225225
Features can be disabled when building wolfSSL by using the appropriate defines. For a list of defines available, please refer to Chapter 2 of the wolfSSL Manual:
226-
https://www.wolfssl.com/wolfSSL/Docs-wolfssl-manual-2-building-wolfssl.html
226+
[Chapter 2](https://www.wolfssl.com/wolfSSL/Docs-wolfssl-manual-2-building-wolfssl.html)

0 commit comments

Comments
 (0)