diff options
Diffstat (limited to 'src/block/block_cipher.h')
-rw-r--r-- | src/block/block_cipher.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/block/block_cipher.h b/src/block/block_cipher.h index 8f9a4e121..a7ca4cd99 100644 --- a/src/block/block_cipher.h +++ b/src/block/block_cipher.h @@ -40,6 +40,11 @@ class BOTAN_DLL BlockCipher : public SymmetricAlgorithm const u32bit BLOCK_SIZE; /** + * @return block size of this algorithm + */ + size_t block_size() const { return BLOCK_SIZE; } + + /** * @return native parallelism of this cipher in blocks */ virtual size_t parallelism() const { return 1; } |