Skip to content
Snippets Groups Projects
Commit fc05e544 authored by Niels Möller's avatar Niels Möller
Browse files

Revert to unsigned in struct nettle_cipher.

parent b64384fd
No related branches found
No related tags found
No related merge requests found
......@@ -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;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment