Lines Matching refs:opParams
65 typedef bool (*RNGLPF3RF_validator)(RNGLPF3RF_OperationParameters *opParams);
103 static bool RNGLPF3RF_checkRange(RNGLPF3RF_OperationParameters *opParams);
257 static bool RNGLPF3RF_checkRange(RNGLPF3RF_OperationParameters *opParams) in RNGLPF3RF_checkRange() argument
259 return CryptoUtils_isNumberInRange(opParams->output, in RNGLPF3RF_checkRange()
260 opParams->outputBitLength, in RNGLPF3RF_checkRange()
261 opParams->endianess, in RNGLPF3RF_checkRange()
262 opParams->lowerLimit, in RNGLPF3RF_checkRange()
263 opParams->upperLimit); in RNGLPF3RF_checkRange()
284 RNGLPF3RF_OperationParameters opParams; in RNGLPF3RF_getValidatedNumber() local
336 opParams.outputBitLength = randomNumberBitLength; in RNGLPF3RF_getValidatedNumber()
337 opParams.output = randomNumber; in RNGLPF3RF_getValidatedNumber()
338 opParams.endianess = endianess; in RNGLPF3RF_getValidatedNumber()
339 opParams.lowerLimit = lowerLimit; in RNGLPF3RF_getValidatedNumber()
340 opParams.upperLimit = upperLimit; in RNGLPF3RF_getValidatedNumber()
342 isValid = validator(&opParams); in RNGLPF3RF_getValidatedNumber()