diff options
author | David Reid <dreid@dreid.org> | 2013-12-17 11:53:43 -0800 |
---|---|---|
committer | David Reid <dreid@dreid.org> | 2013-12-17 11:53:43 -0800 |
commit | 668d4803571876c1cf803b33495ddcf4433a4d83 (patch) | |
tree | 279895454a38743f60047c9162477eb706d2b3d9 /docs/hazmat | |
parent | ebf83a0fe61d991ac9c5c288d6005107b3292767 (diff) | |
download | cryptography-668d4803571876c1cf803b33495ddcf4433a4d83.tar.gz cryptography-668d4803571876c1cf803b33495ddcf4433a4d83.tar.bz2 cryptography-668d4803571876c1cf803b33495ddcf4433a4d83.zip |
BlockCipherAlgorithm because we should document block_size and ARC4 shouldn't need block_size = 1.
Diffstat (limited to 'docs/hazmat')
-rw-r--r-- | docs/hazmat/primitives/interfaces.rst | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/docs/hazmat/primitives/interfaces.rst b/docs/hazmat/primitives/interfaces.rst index 11cff51a..361b723e 100644 --- a/docs/hazmat/primitives/interfaces.rst +++ b/docs/hazmat/primitives/interfaces.rst @@ -36,6 +36,17 @@ Symmetric Ciphers The number of bits in the key being used. +.. class:: BlockCipherAlgorithm + + A block cipher algorithm. + + .. attribute:: block_size + + :type: int + + The number of bits in a block. + + Cipher Modes ------------ |