Home | History | Annotate | Download | only in dsa

Lines Matching refs:pub_key

96 	BIGNUM *pub_key=NULL,*priv_key=NULL;
111 if (dsa->pub_key == NULL)
113 if ((pub_key=BN_new()) == NULL) goto err;
116 pub_key=dsa->pub_key;
131 if (!BN_mod_exp(pub_key,dsa->g,prk,dsa->p,ctx)) goto err;
135 dsa->pub_key=pub_key;
139 if ((pub_key != NULL) && (dsa->pub_key == NULL)) BN_free(pub_key);