]> code.ossystems Code Review - meta-freescale.git/blob
4489b435e851d95c0dcea61ddbfe72a1163ec578
[meta-freescale.git] /
1 From 6ca53b6d6519d52021e642230bb51ae7834b3e67 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
5
6 These functions are called with const BIGNUMs, so we change the
7 signatures to avoid compilation warnings
8
9 Signed-off-by: Cristian Stoica <cristian.stoica@nxp.com>
10 ---
11  crypto/engine/eng_cryptodev.c | 4 ++--
12  1 file changed, 2 insertions(+), 2 deletions(-)
13
14 diff --git a/crypto/engine/eng_cryptodev.c b/crypto/engine/eng_cryptodev.c
15 index b9c7ff3..58e539c 100644
16 --- a/crypto/engine/eng_cryptodev.c
17 +++ b/crypto/engine/eng_cryptodev.c
18 @@ -146,7 +146,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;
21  
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)
24  {
25      int len;
26      unsigned char *p;
27 @@ -168,7 +168,7 @@ inline int spcf_bn2bin(BIGNUM *bn, unsigned char **bin, int *bin_len)
28      return 0;
29  }
30  
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)
33  {
34      int len;
35      unsigned char *p;
36 -- 
37 2.7.3
38