commit | 5ff02450ee953e1943b4080bd7b0832fc3b1c18b | [log] [tgz] |
---|---|---|
author | Dave Rodgman <dave.rodgman@arm.com> | Thu Jul 13 15:55:21 2023 +0100 |
committer | Dave Rodgman <dave.rodgman@arm.com> | Thu Jul 13 15:57:20 2023 +0100 |
tree | ba792607b8f6b3aebb3c1960ee02b62d066dd8c1 | |
parent | 3c22366695ade34abb58df30caa5abdc0fa890b9 [diff] [blame] |
Reduce size of static data in gcm Signed-off-by: Dave Rodgman <dave.rodgman@arm.com>
diff --git a/library/gcm.c b/library/gcm.c index 7821204..a05e4c3 100644 --- a/library/gcm.c +++ b/library/gcm.c
@@ -174,7 +174,7 @@ * last4[x] = x times P^128 * where x and last4[x] are seen as elements of GF(2^128) as in [MGV] */ -static const uint64_t last4[16] = +static const uint16_t last4[16] = { 0x0000, 0x1c20, 0x3840, 0x2460, 0x7080, 0x6ca0, 0x48c0, 0x54e0,