Skip to content

Commit b7db289

Browse files
committed
Second fix for the IV argument capitalization (documentation)
1 parent 8955caf commit b7db289

File tree

1 file changed

+2
-2
lines changed
  • shared-bindings/aesio

1 file changed

+2
-2
lines changed

shared-bindings/aesio/aes.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
//| :param ~circuitpython_typing.ReadableBuffer key: A 16-, 24-, or 32-byte key
2929
//| :param int mode: AES mode to use. One of: `MODE_ECB`, `MODE_CBC`, or
3030
//| `MODE_CTR`
31-
//| :param ~circuitpython_typing.ReadableBuffer iv: Initialization vector to use for CBC or CTR mode
31+
//| :param ~circuitpython_typing.ReadableBuffer IV: Initialization vector to use for CBC or CTR mode
3232
//|
3333
//| Additional arguments are supported for legacy reasons.
3434
//|
@@ -106,7 +106,7 @@ STATIC mp_obj_t aesio_aes_make_new(const mp_obj_type_t *type, size_t n_args,
106106
//| """Update the AES state with the given key.
107107
//|
108108
//| :param ~circuitpython_typing.ReadableBuffer key: A 16-, 24-, or 32-byte key
109-
//| :param ~circuitpython_typing.ReadableBuffer iv: Initialization vector to use
109+
//| :param ~circuitpython_typing.ReadableBuffer IV: Initialization vector to use
110110
//| for CBC or CTR mode"""
111111
//| ...
112112
STATIC mp_obj_t aesio_aes_rekey(size_t n_args, const mp_obj_t *pos_args, mp_map_t *kw_args) {

0 commit comments

Comments
 (0)