diff options
Diffstat (limited to 'docs/library/ucryptolib.rst')
| -rw-r--r-- | docs/library/ucryptolib.rst | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/library/ucryptolib.rst b/docs/library/ucryptolib.rst index 4b2c45f07..c9e0bb71f 100644 --- a/docs/library/ucryptolib.rst +++ b/docs/library/ucryptolib.rst @@ -21,8 +21,8 @@ Classes * *key* is an encryption/decryption key (bytes-like). * *mode* is: - * 1 for Electronic Code Book (ECB). - * 2 for Cipher Block Chaining (CBC) + * ``1`` (or ``ucryptolib.MODE_ECB`` if it exists) for Electronic Code Book (ECB). + * ``2`` (or ``ucryptolib.MODE_CBC`` if it exists) for Cipher Block Chaining (CBC) * *IV* is an initialization vector for CBC mode. |
