Home
last modified time | relevance | path

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

/external/openssl/crypto/conf/
Dconf_mod.c294 CONF_MODULE *tmod = NULL; in module_add() local
299 tmod = OPENSSL_malloc(sizeof(CONF_MODULE)); in module_add()
300 if (tmod == NULL) in module_add()
303 tmod->dso = dso; in module_add()
304 tmod->name = BUF_strdup(name); in module_add()
305 tmod->init = ifunc; in module_add()
306 tmod->finish = ffunc; in module_add()
307 tmod->links = 0; in module_add()
309 if (!sk_CONF_MODULE_push(supported_modules, tmod)) in module_add()
311 OPENSSL_free(tmod); in module_add()
[all …]
/external/openssl/crypto/bn/
Dbn_mont.c368 BIGNUM tmod; in BN_MONT_CTX_set() local
371 BN_init(&tmod); in BN_MONT_CTX_set()
372 tmod.d=buf; in BN_MONT_CTX_set()
373 tmod.dmax=2; in BN_MONT_CTX_set()
374 tmod.neg=0; in BN_MONT_CTX_set()
387 tmod.top=0; in BN_MONT_CTX_set()
388 if ((buf[0] = mod->d[0])) tmod.top=1; in BN_MONT_CTX_set()
389 if ((buf[1] = mod->top>1 ? mod->d[1] : 0)) tmod.top=2; in BN_MONT_CTX_set()
391 if ((BN_mod_inverse(Ri,R,&tmod,ctx)) == NULL) in BN_MONT_CTX_set()
408 if (!BN_div(Ri,NULL,Ri,&tmod,ctx)) goto err; in BN_MONT_CTX_set()
[all …]