summaryrefslogtreecommitdiff
path: root/nettle-meta.h
diff options
context:
space:
mode:
Diffstat (limited to 'nettle-meta.h')
-rw-r--r--nettle-meta.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/nettle-meta.h b/nettle-meta.h
index 59f5c41e..16cc77bc 100644
--- a/nettle-meta.h
+++ b/nettle-meta.h
@@ -37,13 +37,13 @@ struct nettle_cipher
{
const char *name;
- size_t context_size;
+ unsigned context_size;
/* Zero for stream ciphers */
- size_t block_size;
+ unsigned block_size;
/* Suggested key size; other sizes are sometimes possible. */
- size_t key_size;
+ unsigned key_size;
nettle_set_key_func *set_encrypt_key;
nettle_set_key_func *set_decrypt_key;