Home | History | Annotate | Download | only in converter

Lines Matching defs:KEY_SIZE

47 #define KEY_SIZE AES_BLOCK_SIZE
48 #define KEY_SIZE_IN_BITS (KEY_SIZE * 8)
144 unsigned char sessionKey[KEY_SIZE];
247 unsigned char value[KEY_SIZE];
248 unsigned char key[KEY_SIZE];
260 memset(pData->value, 0, KEY_SIZE);
270 HMAC_Init_ex(&pSession->signingContext, pData->key, KEY_SIZE, EVP_sha1(), NULL);
1121 pSession->encryptedSessionKeyLength = FwdLockGlue_GetEncryptedKeyLength(KEY_SIZE);
1131 if (!FwdLockGlue_GetRandomNumber(pSession->sessionKey, KEY_SIZE)) {
1133 } else if (!FwdLockGlue_EncryptKey(pSession->sessionKey, KEY_SIZE,
1141 memset(pSession->sessionKey, 0, KEY_SIZE); // Zero out key data.
1221 HMAC_Init_ex(&pSession->signingContext, NULL, KEY_SIZE, NULL, NULL);