diff options
Diffstat (limited to 'src/block/tea/tea.cpp')
-rw-r--r-- | src/block/tea/tea.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/block/tea/tea.cpp b/src/block/tea/tea.cpp index 328786a14..4ef995a7c 100644 --- a/src/block/tea/tea.cpp +++ b/src/block/tea/tea.cpp @@ -30,8 +30,8 @@ void TEA::encrypt_n(const byte in[], byte out[], size_t blocks) const store_be(out, L, R); - in += block_size(); - out += block_size(); + in += BLOCK_SIZE; + out += BLOCK_SIZE; } } @@ -55,8 +55,8 @@ void TEA::decrypt_n(const byte in[], byte out[], size_t blocks) const store_be(out, L, R); - in += block_size(); - out += block_size(); + in += BLOCK_SIZE; + out += BLOCK_SIZE; } } |