Lines Matching defs:hmacKey
244656 unsigned char *hmacKey;
244930 if(keyCtx->hmacKey != NULL){
244931 (void)memset_s(keyCtx->hmacKey, keyCtx->codecConst.keySize, 0, keyCtx->codecConst.keySize);
244932 sqlite3_free(keyCtx->hmacKey);
244933 keyCtx->hmacKey = NULL;
244954 keyCtx->hmacKey = (unsigned char *)sqlite3Malloc(keyCtx->codecConst.keySize);
244998 if(input->hmacKey != NULL && input->codecConst.keySize > 0){
244999 output->hmacKey = (unsigned char *)sqlite3Malloc(output->codecConst.keySize);
245000 if(output->hmacKey == NULL){
245004 rc = memcpy_s(output->hmacKey, output->codecConst.keySize, input->hmacKey, input->codecConst.keySize);
245059 if(keyCtx->key == NULL || keyCtx->hmacKey == NULL || keyCtx->keyInfo == NULL){
245103 Buffer hmacKey;
245108 hmacKey.buffer = keyCtx->hmacKey;
245109 hmacKey.bufferSize = keyCtx->codecConst.keySize;
245110 opensslKdf(&hmacPassword, &hmacSalt, HMAC_ITER, &hmacKey, keyCtx->codecConst.kdfAlgo);
245490 key.buffer = ctx->hmacKey;