Skip to content

Commit 6af3cc2

Browse files
rr
1 parent bb1e4d9 commit 6af3cc2

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

docs/encryption.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ CBC mode requires both a key and an initialization vector (IV).
3434
```
3535

3636
3. **Using custom CBC implementation (v1)**:
37-
[Full Example](/examples/encryption/cbc_encryption_initializer_custom.c)
37+
[Full Example](/examples/encryption/cbc_encryption_custom_v1_inicializer.c)
3838
```c
3939
const char *key = "what ever key you want to put with what ever size"; // No size limit
4040

@@ -46,7 +46,7 @@ CBC mode requires both a key and an initialization vector (IV).
4646
ECB mode requires only a key (no IV).
4747

4848
#### Initialization Methods:
49-
[Full Example](/examples/encryption/ecb_encryption_initializer.c)
49+
[Full Example](/examples/encryption/ecb_encryption_initializer_key.c)
5050
1. **Using raw key bytes**:
5151
```c
5252
uint8_t key[] = {56, 31, 4, 56, 7, 1, 31, 6, 7, 8}; // Max 16 bytes

0 commit comments

Comments
 (0)