Home | History | Annotate | Download | only in converter

Lines Matching refs:KEY_SIZE

46 #define KEY_SIZE AES_BLOCK_SIZE
47 #define KEY_SIZE_IN_BITS (KEY_SIZE * 8)
143 unsigned char sessionKey[KEY_SIZE];
246 unsigned char value[KEY_SIZE];
247 unsigned char key[KEY_SIZE];
259 memset(pData->value, 0, KEY_SIZE);
269 HMAC_Init_ex(&pSession->signingContext, pData->key, KEY_SIZE, EVP_sha1(), NULL);
1120 pSession->encryptedSessionKeyLength = FwdLockGlue_GetEncryptedKeyLength(KEY_SIZE);
1130 if (!FwdLockGlue_GetRandomNumber(pSession->sessionKey, KEY_SIZE)) {
1132 } else if (!FwdLockGlue_EncryptKey(pSession->sessionKey, KEY_SIZE,
1140 memset(pSession->sessionKey, 0, KEY_SIZE); // Zero out key data.
1220 HMAC_Init_ex(&pSession->signingContext, NULL, KEY_SIZE, NULL, NULL);