1 From 528e4965e536d31cdccb11abe5e04db28a1008a8 Mon Sep 17 00:00:00 2001
 
   2 From: Cristian Stoica <cristian.stoica@nxp.com>
 
   3 Date: Tue, 9 Feb 2016 12:11:32 +0200
 
   4 Subject: [PATCH 45/48] cryptodev: change signature for conversion functions
 
   6 These functions are called with const BIGNUMs, so we change the
 
   7 signatures to avoid compilation warnings
 
   9 Signed-off-by: Cristian Stoica <cristian.stoica@nxp.com>
 
  11  crypto/engine/eng_cryptodev.c | 4 ++--
 
  12  1 file changed, 2 insertions(+), 2 deletions(-)
 
  14 diff --git a/crypto/engine/eng_cryptodev.c b/crypto/engine/eng_cryptodev.c
 
  15 index e0f9d4b..3024a68 100644
 
  16 --- a/crypto/engine/eng_cryptodev.c
 
  17 +++ b/crypto/engine/eng_cryptodev.c
 
  18 @@ -145,7 +145,7 @@ const EVP_CIPHER cryptodev_tls12_aes_256_cbc_hmac_sha1;
 
  19  const EVP_CIPHER cryptodev_tls12_aes_128_cbc_hmac_sha256;
 
  20  const EVP_CIPHER cryptodev_tls12_aes_256_cbc_hmac_sha256;
 
  22 -inline int spcf_bn2bin(BIGNUM *bn, unsigned char **bin, int *bin_len)
 
  23 +inline int spcf_bn2bin(const BIGNUM *bn, unsigned char **bin, int *bin_len)
 
  27 @@ -167,7 +167,7 @@ inline int spcf_bn2bin(BIGNUM *bn, unsigned char **bin, int *bin_len)
 
  31 -inline int spcf_bn2bin_ex(BIGNUM *bn, unsigned char **bin, int *bin_len)
 
  32 +inline int spcf_bn2bin_ex(const BIGNUM *bn, unsigned char **bin, int *bin_len)