From 3d6155ab1682e68c30f93064f988247508f55bbe Mon Sep 17 00:00:00 2001 From: mjvk <29380294+mjvk@users.noreply.github.com> Date: Wed, 9 May 2018 11:47:33 +0100 Subject: Update blake2-impl.h --- ref/blake2-impl.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ref/blake2-impl.h b/ref/blake2-impl.h index 5dff7fc..c1df82e 100644 --- a/ref/blake2-impl.h +++ b/ref/blake2-impl.h @@ -72,8 +72,8 @@ static BLAKE2_INLINE uint16_t load16( const void *src ) return w; #else const uint8_t *p = ( const uint8_t * )src; - return (( uint16_t )( p[0] ) << 0) | - (( uint16_t )( p[1] ) << 8) ; + return ( uint16_t )((( uint32_t )( p[0] ) << 0) | + (( uint32_t )( p[1] ) << 8)); #endif } -- cgit v1.2.3