diff options
Diffstat (limited to 'src/include/common/kmgr_utils.h')
-rw-r--r-- | src/include/common/kmgr_utils.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/include/common/kmgr_utils.h b/src/include/common/kmgr_utils.h index 23124a7fc60..ce26df56fb3 100644 --- a/src/include/common/kmgr_utils.h +++ b/src/include/common/kmgr_utils.h @@ -82,7 +82,7 @@ typedef struct CryptoKey { uint64 pgkey_id; /* Upper half of IV */ uint64 counter; /* Lower half of IV */ - uint128 tag; /* GCM tag */ + unsigned char tag[16]; /* GCM tag */ unsigned char encrypted_key[sizeof(int) + KMGR_MAX_KEY_LEN_BYTES]; } CryptoKey; |