Fix a typo

Signed-off-by: Manuel Pégourié-Gonnard <[email protected]>
This commit is contained in:
Manuel Pégourié-Gonnard
2023-09-25 14:13:24 +01:00
committed by Waleed Elmelegy
parent 8013e685f5
commit e4138e3279
+2 -2
View File
@@ -720,7 +720,7 @@ int mbedtls_cipher_set_iv(mbedtls_cipher_context_t *ctx,
* 3. mbedtls_cipher_update() one or more times
* 4. mbedtls_cipher_finish()
* .
* This sequence can be repeated to encrypt of decrypt multiple
* This sequence can be repeated to encrypt or decrypt multiple
* messages with the same key.
*
* \note With AEAD ciphers, the order of calls for each message
@@ -733,7 +733,7 @@ int mbedtls_cipher_set_iv(mbedtls_cipher_context_t *ctx,
* 6. mbedtls_cipher_check_tag() (for decryption) or
* mbedtls_cipher_write_tag() (for encryption).
* .
* This sequence can be repeated to encrypt of decrypt multiple
* This sequence can be repeated to encrypt or decrypt multiple
* messages with the same key.
*
* \param ctx The generic cipher context. This must be bound to a key.