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

View File

@ -20,7 +20,7 @@
//| self, //| self,
//| key: ReadableBuffer, //| key: ReadableBuffer,
//| mode: int = 0, //| mode: int = 0,
//| iv: Optional[ReadableBuffer] = None, //| IV: Optional[ReadableBuffer] = None,
//| segment_size: int = 8, //| segment_size: int = 8,
//| ) -> None: //| ) -> None:
//| """Create a new AES state with the given key. //| """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( //| def rekey(
//| self, //| self,
//| key: ReadableBuffer, //| key: ReadableBuffer,
//| iv: Optional[ReadableBuffer] = None, //| IV: Optional[ReadableBuffer] = None,
//| ) -> None: //| ) -> None:
//| """Update the AES state with the given key. //| """Update the AES state with the given key.
//| //|