From a681219a9275ded66dd927750edcec7859cbffbb Mon Sep 17 00:00:00 2001 From: Matthias Schiffer Date: Thu, 28 Aug 2014 00:41:44 +0200 Subject: Add UHASH implementation --- src/types.h | 1 + 1 file changed, 1 insertion(+) (limited to 'src/types.h') diff --git a/src/types.h b/src/types.h index 352e7be..d0a0221 100644 --- a/src/types.h +++ b/src/types.h @@ -119,6 +119,7 @@ typedef struct fastd_shell_env fastd_shell_env_t; /** A 128-bit aligned block of data, primarily used by the cryptographic functions */ typedef union fastd_block128 { uint8_t b[16]; /**< Byte-wise access to the data */ + uint32_t dw[4]; /**< Doubleword-wise access to the data */ uint64_t qw[2]; /**< Quadword-wise access to the data */ } __attribute__((aligned(16))) fastd_block128_t; -- cgit v1.2.3