Skip to content

Commit

Permalink
Merge pull request #173 from kaleb-himes/AES-MODES
Browse files Browse the repository at this point in the history
Fill out missing AES modes
JacobBarthelmeh authored Dec 6, 2024
2 parents 8bca7bd + 574acc9 commit a23747e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion wolfSSL/src/chapter10.md
Original file line number Diff line number Diff line change
@@ -180,7 +180,7 @@ wc_Poly1305Final(&pmac, pmacDigest);

### AES

wolfCrypt provides support for AES with key sizes of 16 bytes (128 bits), 24 bytes (192 bits), or 32 bytes (256 bits). Supported AES modes include CBC, CTR, GCM, and CCM-8.
wolfCrypt provides support for AES with key sizes of 16 bytes (128 bits), 24 bytes (192 bits), or 32 bytes (256 bits). Supported AES modes include CBC, CTR, GCM (GCM-Streaming), OFB, CFB(1, 8, 128), SIV, XTS (XTS-Streaming), GMAC, CMAC, ECB, KW (KeyWrap), and CCM-8.

**NOTE**: [`wc_AesInit()`](group__AES.md#function-wc_aesinit) should always be called first to initialize the `Aes` structure, before calling other `Aes` API functions such as [`wc_AesSetKey()`](group__AES.md#function-wc_aessetkey), and [`wc_AesGcmSetKey()`](group__AES.md#function-wc_aesgcmsetkey).

0 comments on commit a23747e

Please sign in to comment.