Skip to content

Commit ec8a01b

Browse files
authored
Merge pull request #211 from ShizukaIshikiriyama/editfipsfaq
Edited typos
2 parents a0b9681 + 13e67e4 commit ec8a01b

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

wolfSSL-FIPS-FAQ/src/section02.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -119,11 +119,11 @@ wolfCrypt_SetCb_fips(myFipsCb);
119119

120120
2. wolfSSL Inc also wanted an option available should one wish to call one of the ESV validated entropy sources so a callback option made sense.
121121

122-
## Will my applications that are linked agaist the 140-3 module still work with the 140-3 module?
122+
## Will my applications that are linked agaist the 140-2 module still work with the 140-3 module?
123123

124124
A: Absolutely! wolfCrypt FIPS modules v2.x (cert #3389, 140-2 module) has 100% API compatibility minus the 3DES services with wolfCrypt FIPS module v5.2.1 (cert #4718, 140-3 module). In addition to the 140-2 APIs, there are new services (TLS KDFs, AES-OFB, etc) and newer extended APIs. For a full list of new services and new API definitions supported by the 140-3 module please refer to the FIPS 140-3 User Guide [UG] which includes an exhaustive list of every FIPS service and correlated API + description(s). If you need a copy of the [UG] please let the wolfSSL team know by emailing [email protected] requesting a copy of the FIPS [UG].
125125

126-
## The wc_SetSeed_Cd() callback and the TLS Layer:
126+
## The wc_SetSeed_Cb() callback and the TLS Layer:
127127

128128
If a user-supplied seed routine is to be used in conjunction with the TLS layer, wc_SetSeed_Cb(user_seed_function) must be called after the initial wolfSSL_Init(), and before the application calls wolfSSL_CTX_new().
129129

@@ -139,7 +139,7 @@ wolfSSL_CTX_new(&ctx);
139139

140140
To avoid potential implementation bugs users could alternatively use the setting #define CUSTOM_RAND_GENERATE' and register their own custom RNG seed gen callback.
141141

142-
Example of setting custom seed gen without depending on wc_SetSeed_Cd():
142+
Example of setting custom seed gen without depending on wc_SetSeed_Cb():
143143

144144
```
145145
extern unsigned int my_rng_seed_gen(void);

0 commit comments

Comments
 (0)