blob: 93103ef79f0156d913fab52b60ee119f3ad8ee25 [file] [log] [blame]
Andrew Geissler4ed12e12020-06-05 18:00:41 -05001From dab16a5fd4efde8ef569b358e19b1fcbc7d0d938 Mon Sep 17 00:00:00 2001
2From: Fabrice Fontaine <fontaine.fabrice@gmail.com>
3Date: Mon, 30 Mar 2020 00:10:46 +0200
4Subject: [PATCH] rngd_jitter: disambiguate call to encrypt
5
6Commit 0f184ea7e792427fb20afe81d471b565aee96f0b disambiguate the call to
7encrypt in rngd_rdrand.c but did not update rngd_jitter.c.
8
9This raise the following build failure:
10
11rngd_jitter.c:75:12: error: conflicting types for 'encrypt'
12 static int encrypt(unsigned char *plaintext, int plaintext_len, unsigned char *key,
13 ^~~~~~~
14In file included from rngd_jitter.c:27:
15/home/dawncrow/buildroot-test/scripts/instance-0/output-1/host/powerpc-buildroot-linux-uclibc/sysroot/usr/include/unistd.h:1132:13: note: previous declaration of 'encrypt' was here
16 extern void encrypt (char *__block, int __edflag) __THROW __nonnull ((1));
17 ^~~~~~~
18Makefile:770: recipe for target 'rngd-rngd_jitter.o' failed
19
20Fixes:
21 - http://autobuild.buildroot.org/results/0ca6bf16e3acbc94065b88c4442d6595424b77cb
22
23Upstream-Status: Backport [https://github.com/nhorman/rng-tools/commit/dab16a5fd4efde8ef569b358e19b1fcbc7d0d938]
24Signed-off-by: Alexander Kanavin <alex.kanavin@gmail.com>
25Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
26---
27 rngd_jitter.c | 4 ++--
28 1 file changed, 2 insertions(+), 2 deletions(-)
29
30diff --git a/rngd_jitter.c b/rngd_jitter.c
31index c1b1aca..49a3825 100644
32--- a/rngd_jitter.c
33+++ b/rngd_jitter.c
34@@ -72,7 +72,7 @@ unsigned char *aes_buf;
35 char key[AES_BLOCK];
36 static unsigned char iv_buf[CHUNK_SIZE] __attribute__((aligned(128)));
37
38-static int encrypt(unsigned char *plaintext, int plaintext_len, unsigned char *key,
39+static int osslencrypt(unsigned char *plaintext, int plaintext_len, unsigned char *key,
40 unsigned char *iv, unsigned char *ciphertext)
41 {
42 EVP_CIPHER_CTX *ctx;
43@@ -122,7 +122,7 @@ static inline int openssl_mangle(unsigned char *tmp, struct rng *ent_src)
44 unsigned char ciphertext[CHUNK_SIZE * RDRAND_ROUNDS];
45
46 /* Encrypt the plaintext */
47- ciphertext_len = encrypt (tmp, strlen(tmp), key, iv_buf,
48+ ciphertext_len = osslencrypt (tmp, strlen(tmp), key, iv_buf,
49 ciphertext);
50 if (!ciphertext_len)
51 return -1;