pkcs11.h: add CK_GCM_PARAMS structure

This commit is contained in:
Ludovic Rousseau 2019-04-18 15:31:15 +02:00 committed by Frank Morgner
parent 98ec27e768
commit 69727c79ad
1 changed files with 8 additions and 0 deletions

View File

@ -815,6 +815,14 @@ typedef struct CK_RSA_PKCS_PSS_PARAMS {
#define CKZ_DATA_SPECIFIED (0x00000001UL)
typedef struct CK_GCM_PARAMS {
void * pIv;
unsigned long ulIvLen;
void * pAAD;
unsigned long ulAADLen;
unsigned long ulTagBits;
} CK_GCM_PARAMS;
typedef unsigned long ck_rv_t;