Home
last modified time | relevance | path

Searched refs:ctx_ctr (Results 1 – 2 of 2) sorted by relevance

/third_party/openssl/crypto/rand/
Ddrbg_ctr.c265 || !EVP_CipherInit_ex(ctr->ctx_ctr, NULL, NULL, ctr->K, NULL, -1)) in ctr_update()
353 if (!EVP_CipherInit_ex(ctr->ctx_ctr, in drbg_ctr_generate()
379 if (!EVP_CipherUpdate(ctr->ctx_ctr, out, &outl, out, buflen) in drbg_ctr_generate()
395 EVP_CIPHER_CTX_free(drbg->data.ctr.ctx_ctr); in drbg_ctr_uninstantiate()
439 if (ctr->ctx_ctr == NULL) in drbg_ctr_init()
440 ctr->ctx_ctr = EVP_CIPHER_CTX_new(); in drbg_ctr_init()
441 if (ctr->ctx_ecb == NULL || ctr->ctx_ctr == NULL in drbg_ctr_init()
444 || !EVP_CipherInit_ex(ctr->ctx_ctr, in drbg_ctr_init()
Drand_local.h142 EVP_CIPHER_CTX *ctx_ctr; member