From 93559037f64a56ab76d5ed1560f2ed3b1a54ab5f Mon Sep 17 00:00:00 2001 From: Rohit Gupta <rohit.gupta@eurecom.fr> Date: Sat, 1 Oct 2016 13:10:17 -0700 Subject: [PATCH] compilation fix for nettle API change in 16.04 --- openair3/TEST/test_aes128_ctr_decrypt.c | 5 +++++ openair3/TEST/test_aes128_ctr_encrypt.c | 5 +++++ 2 files changed, 10 insertions(+) diff --git a/openair3/TEST/test_aes128_ctr_decrypt.c b/openair3/TEST/test_aes128_ctr_decrypt.c index 209ce8977a2..15416c5e4bb 100644 --- a/openair3/TEST/test_aes128_ctr_decrypt.c +++ b/openair3/TEST/test_aes128_ctr_decrypt.c @@ -48,7 +48,12 @@ 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); +#if NETTLE_VERSION <= 27 cipher->set_encrypt_key(ctx, key_length, key); +#else + cipher->set_encrypt_key(ctx, key); +#endif + memcpy(ctr, ictr, cipher->block_size); ctr_crypt(ctx, cipher->encrypt, diff --git a/openair3/TEST/test_aes128_ctr_encrypt.c b/openair3/TEST/test_aes128_ctr_encrypt.c index a089ac549da..dab80b3602a 100644 --- a/openair3/TEST/test_aes128_ctr_encrypt.c +++ b/openair3/TEST/test_aes128_ctr_encrypt.c @@ -47,7 +47,12 @@ static void test_cipher_ctr(const struct nettle_cipher *cipher, const uint8_t *k uint8_t *data = malloc(length); uint8_t *ctr = malloc(cipher->block_size); +#if NETTLE_VERSION <= 27 cipher->set_encrypt_key(ctx, key_length, key); +#else + cipher->set_encrypt_key(ctx, key); +#endif + memcpy(ctr, ictr, cipher->block_size); ctr_crypt(ctx, cipher->encrypt, -- GitLab