From e63475debb4247e286c911832d1f50e35f567d27 Mon Sep 17 00:00:00 2001 From: Rohit Gupta <rohit.gupta@eurecom.fr> Date: Sat, 1 Oct 2016 22:03:37 +0200 Subject: [PATCH] minor fix for compilation of core simulators --- openair3/TEST/test_aes128_ctr_decrypt.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/openair3/TEST/test_aes128_ctr_decrypt.c b/openair3/TEST/test_aes128_ctr_decrypt.c index 251f80fa708..209ce8977a2 100644 --- a/openair3/TEST/test_aes128_ctr_decrypt.c +++ b/openair3/TEST/test_aes128_ctr_decrypt.c @@ -48,7 +48,7 @@ void test_uncipher_ctr(const struct nettle_cipher *cipher, const uint8_t *key, uint8_t *data = malloc(length); uint8_t *ctr = malloc(cipher->block_size); - cipher->set_encrypt_key(ctx, key); + cipher->set_encrypt_key(ctx, key_length, key); memcpy(ctr, ictr, cipher->block_size); ctr_crypt(ctx, cipher->encrypt, -- GitLab