Lines Matching refs:operation
97 AESCTR_Operation operation; in AESCTRDRBGXX_updateState() local
134 operation.key = &object->key; in AESCTRDRBGXX_updateState()
135 operation.input = (uint8_t *)buf32; in AESCTRDRBGXX_updateState()
136 operation.output = (uint8_t *)buf32; in AESCTRDRBGXX_updateState()
137 operation.initialCounter = object->counter; in AESCTRDRBGXX_updateState()
138 operation.inputLength = object->key.u.plaintext.keyLength + AESCTRDRBG_AES_BLOCK_SIZE_BYTES; in AESCTRDRBGXX_updateState()
140 if (AESCTR_oneStepEncrypt(object->ctrHandle, &operation) != AESCTR_STATUS_SUCCESS) in AESCTRDRBGXX_updateState()
433 AESCTR_Operation operation; in AESCTRDRBG_getRandomBytes() local
486 operation.key = &object->key; in AESCTRDRBG_getRandomBytes()
487 operation.input = randomBytes; in AESCTRDRBG_getRandomBytes()
488 operation.output = randomBytes; in AESCTRDRBG_getRandomBytes()
489 operation.initialCounter = object->counter; in AESCTRDRBG_getRandomBytes()
490 operation.inputLength = randomBytesSize; in AESCTRDRBG_getRandomBytes()
492 status = AESCTR_oneStepEncrypt(object->ctrHandle, &operation); in AESCTRDRBG_getRandomBytes()