diff options
Diffstat (limited to 'src/block/seed/seed.cpp')
-rw-r--r-- | src/block/seed/seed.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/block/seed/seed.cpp b/src/block/seed/seed.cpp index 015d2d48d..408220013 100644 --- a/src/block/seed/seed.cpp +++ b/src/block/seed/seed.cpp @@ -54,8 +54,8 @@ void SEED::encrypt_n(const byte in[], byte out[], size_t blocks) const store_be(out, B2, B3, B0, B1); - in += block_size(); - out += block_size(); + in += BLOCK_SIZE; + out += BLOCK_SIZE; } } @@ -94,8 +94,8 @@ void SEED::decrypt_n(const byte in[], byte out[], size_t blocks) const store_be(out, B2, B3, B0, B1); - in += block_size(); - out += block_size(); + in += BLOCK_SIZE; + out += BLOCK_SIZE; } } |