aboutsummaryrefslogtreecommitdiffstats
path: root/crypto
diff options
context:
space:
mode:
Diffstat (limited to 'crypto')
-rw-r--r--crypto/drbg.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/crypto/drbg.c b/crypto/drbg.c
index 9fd239fea963..39ed9183d30f 100644
--- a/crypto/drbg.c
+++ b/crypto/drbg.c
@@ -277,7 +277,7 @@ static bool drbg_fips_continuous_test(struct drbg_state *drbg,
277static inline void drbg_cpu_to_be32(__u32 val, unsigned char *buf) 277static inline void drbg_cpu_to_be32(__u32 val, unsigned char *buf)
278{ 278{
279 struct s { 279 struct s {
280 __u32 conv; 280 __be32 conv;
281 }; 281 };
282 struct s *conversion = (struct s *) buf; 282 struct s *conversion = (struct s *) buf;
283 283
@@ -989,7 +989,7 @@ static int drbg_hash_generate(struct drbg_state *drbg,
989 int ret = 0; 989 int ret = 0;
990 union { 990 union {
991 unsigned char req[8]; 991 unsigned char req[8];
992 __u64 req_int; 992 __be64 req_int;
993 } u; 993 } u;
994 unsigned char prefix = DRBG_PREFIX3; 994 unsigned char prefix = DRBG_PREFIX3;
995 struct drbg_string data1, data2; 995 struct drbg_string data1, data2;