diff options
author | lloyd <[email protected]> | 2013-03-05 00:40:44 +0000 |
---|---|---|
committer | lloyd <[email protected]> | 2013-03-05 00:40:44 +0000 |
commit | 50339fd935441332cdb55bcf3877b1dcdb26834c (patch) | |
tree | 1424fc88e4a59906596388930deeb0c5a12e0245 /doc/lowlevel.rst | |
parent | 9966200fd5762df6d1e6135b409ca6e2105c07bd (diff) |
Document BlockCipher::parallelism
Diffstat (limited to 'doc/lowlevel.rst')
-rw-r--r-- | doc/lowlevel.rst | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/doc/lowlevel.rst b/doc/lowlevel.rst index cd343063a..398d52d85 100644 --- a/doc/lowlevel.rst +++ b/doc/lowlevel.rst @@ -161,6 +161,12 @@ All block ciphers classes in botan are subclasses of Identical to :cpp:func:`decrypt`\ (block, block) + .. cpp:function:: size_t parallelism() const + + Returns the native parallelism of this implementation, ie how + many blocks can be processed in parallel if sufficient data is + passed to :cpp:func:`encrypt_n` or :cpp:func:`decrypt_n`. + Stream Ciphers --------------------------------- |