summaryrefslogtreecommitdiff
path: root/cbc.h
diff options
context:
space:
mode:
Diffstat (limited to 'cbc.h')
-rw-r--r--cbc.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/cbc.h b/cbc.h
index 8eef8036..eb01239c 100644
--- a/cbc.h
+++ b/cbc.h
@@ -38,14 +38,14 @@ extern "C" {
void
cbc_encrypt(void *ctx, nettle_crypt_func *f,
- unsigned block_size, uint8_t *iv,
- unsigned length, uint8_t *dst,
+ size_t block_size, uint8_t *iv,
+ size_t length, uint8_t *dst,
const uint8_t *src);
void
cbc_decrypt(void *ctx, nettle_crypt_func *f,
- unsigned block_size, uint8_t *iv,
- unsigned length, uint8_t *dst,
+ size_t block_size, uint8_t *iv,
+ size_t length, uint8_t *dst,
const uint8_t *src);
#define CBC_CTX(type, size) \