Lines Matching refs:keySize
244638 int keySize;
244926 (void)memset_s(keyCtx->key, keyCtx->codecConst.keySize, 0, keyCtx->codecConst.keySize);
244931 (void)memset_s(keyCtx->hmacKey, keyCtx->codecConst.keySize, 0, keyCtx->codecConst.keySize);
244953 keyCtx->key = (unsigned char *)sqlite3Malloc(keyCtx->codecConst.keySize);
244954 keyCtx->hmacKey = (unsigned char *)sqlite3Malloc(keyCtx->codecConst.keySize);
244986 if(input->key != NULL && input->codecConst.keySize > 0){
244987 output->key = (unsigned char *)sqlite3Malloc(output->codecConst.keySize);
244992 rc = memcpy_s(output->key, output->codecConst.keySize, input->key, input->codecConst.keySize);
244998 if(input->hmacKey != NULL && input->codecConst.keySize > 0){
244999 output->hmacKey = (unsigned char *)sqlite3Malloc(output->codecConst.keySize);
245004 rc = memcpy_s(output->hmacKey, output->codecConst.keySize, input->hmacKey, input->codecConst.keySize);
245065 sqlite3CodecHex2Bin(keyCtx->password + 2, keyCtx->codecConst.keySize * 2, keyCtx->key);
245066 sqlite3CodecHex2Bin(keyCtx->password + 2 + keyCtx->codecConst.keySize * 2, SALT_SIZE * 2, ctx->salt);
245073 sqlite3CodecHex2Bin(keyCtx->password + 2, keyCtx->codecConst.keySize * 2, keyCtx->key);
245078 sqlite3CodecBin2Hex(ctx->salt, SALT_SIZE, keyCtx->keyInfo + 2 + keyCtx->codecConst.keySize * 2);
245089 key.bufferSize = keyCtx->codecConst.keySize;
245093 sqlite3CodecBin2Hex(keyCtx->key, keyCtx->codecConst.keySize, keyCtx->keyInfo + 2);
245094 sqlite3CodecBin2Hex(ctx->salt, SALT_SIZE, keyCtx->keyInfo + 2 + keyCtx->codecConst.keySize * 2);
245105 hmacPassword.bufferSize = keyCtx->codecConst.keySize;
245109 hmacKey.bufferSize = keyCtx->codecConst.keySize;
245144 keyCtx->codecConst.keySize = opensslGetKeySize(keyCtx->codecConst.cipher);
245145 keyCtx->codecConst.keyInfoSize = (keyCtx->codecConst.keySize + SALT_SIZE) * 2 + 3;
245491 key.bufferSize = ctx->codecConst.keySize;
245557 if(keyCtx->codecConst.keySize == 0){
245605 if(keyCtx->codecConst.keySize == 0){