You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Address PR feedback: remove line numbers and update comment style
- Remove all line number references (lines 2707-2736, 319-323, 4269-4285, 2753+, 2738-2751)
- Change all // comments to /* */ style in code examples to match wolfSSL coding style
- Fix typo: 'directoriesc.' to 'directories'
- Replace min() with ternary operator in crypto callback example for portability
Addresses feedback from cconlon in PR #233
Co-Authored-By: David Garske <david@wolfssl.com>
@@ -309,14 +309,14 @@ For development and testing purposes only, you can define `WOLFSSL_GENSEED_FORTE
309
309
#define WOLFSSL_GENSEED_FORTEST
310
310
```
311
311
312
-
This will generate a deterministic seed pattern (0x00, 0x01, 0x02, ...) suitable only for testing and debugging. The implementation is in `./wolfcrypt/src/random.c` (lines 4269-4285).
312
+
This will generate a deterministic seed pattern (0x00, 0x01, 0x02, ...) suitable only for testing and debugging. The implementation can be found in `./wolfcrypt/src/random.c`.
313
313
314
314
### Platform-Specific Examples
315
315
316
316
For examples of platform-specific `wc_GenerateSeed()` implementations, reference the existing implementations in `./wolfcrypt/src/random.c`:
317
317
318
-
-**Windows**: Uses `CryptGenRandom()` or `BCryptGenRandom()` (lines 2753+)
0 commit comments