Skip to content
Snippets Groups Projects
Commit 4c69ba58 authored by Nick Mathewson's avatar Nick Mathewson :game_die:
Browse files

Fix conflicting types errors for aes.c.

parent 20ce9f23
Branches
Tags
No related merge requests found
......@@ -259,9 +259,9 @@ evaluate_ctr_for_aes(void)
#define COUNTER(c, n) ((c)->counter ## n)
#endif
static void aes_set_key(aes_cnt_cipher_t *cipher, const char *key,
static void aes_set_key(aes_cnt_cipher_t *cipher, const uint8_t *key,
int key_bits);
static void aes_set_iv(aes_cnt_cipher_t *cipher, const char *iv);
static void aes_set_iv(aes_cnt_cipher_t *cipher, const uint8_t *iv);
/**
* Return a newly allocated counter-mode AES128 cipher implementation,
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment