Home
last modified time | relevance | path

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

/src/crypto/openssl/providers/implementations/rands/
H A Ddrbg_ctr.c47 EVP_CIPHER_CTX *ctx_ctr; member
307 || !EVP_CipherInit_ex(ctr->ctx_ctr, NULL, NULL, ctr->K, NULL, -1)) in ctr_update()
428 if (!EVP_CipherInit_ex(ctr->ctx_ctr, in drbg_ctr_generate()
454 if (!EVP_CipherUpdate(ctr->ctx_ctr, out, &outl, out, buflen) in drbg_ctr_generate()
573 if (ctr->ctx_ctr == NULL) in drbg_ctr_init()
574 ctr->ctx_ctr = EVP_CIPHER_CTX_new(); in drbg_ctr_init()
575 if (ctr->ctx_ecb == NULL || ctr->ctx_ctr == NULL) { in drbg_ctr_init()
582 || !EVP_CipherInit_ex(ctr->ctx_ctr, in drbg_ctr_init()
617 EVP_CIPHER_CTX_free(ctr->ctx_ctr); in drbg_ctr_init()
618 ctr->ctx_ecb = ctr->ctx_ctr = NULL; in drbg_ctr_init()
[all …]