Fix capitalization of the IV argument (documentation)

This commit is contained in:
Isaac Benitez 2023-03-06 10:38:28 -08:00
parent 90155925d5
commit 8955caff44
1 changed files with 2 additions and 2 deletions

View File

@ -20,7 +20,7 @@
//| self,
//| key: ReadableBuffer,
//| mode: int = 0,
//| iv: Optional[ReadableBuffer] = None,
//| IV: Optional[ReadableBuffer] = None,
//| segment_size: int = 8,
//| ) -> None:
//| """Create a new AES state with the given key.
@ -101,7 +101,7 @@ STATIC mp_obj_t aesio_aes_make_new(const mp_obj_type_t *type, size_t n_args,
//| def rekey(
//| self,
//| key: ReadableBuffer,
//| iv: Optional[ReadableBuffer] = None,
//| IV: Optional[ReadableBuffer] = None,
//| ) -> None:
//| """Update the AES state with the given key.
//|