Searched refs:RSAref_bin2bn (Results 1 - 1 of 1) sorted by relevance

/barrelfish-master/lib/openssl-1.0.0d/demos/engines/rsaref/
H A Drsaref.c330 static BIGNUM *RSAref_bin2bn(unsigned char *from, BIGNUM *to, int max) function
344 to->n=RSAref_bin2bn(from->m,NULL,RSAref_MAX_LEN);
345 to->e=RSAref_bin2bn(from->e,NULL,RSAref_MAX_LEN);
362 if ((to->n=RSAref_bin2bn(from->m,NULL,RSAref_MAX_LEN)) == NULL)
364 if ((to->e=RSAref_bin2bn(from->e,NULL,RSAref_MAX_LEN)) == NULL)
366 if ((to->d=RSAref_bin2bn(from->d,NULL,RSAref_MAX_LEN)) == NULL)
368 if ((to->p=RSAref_bin2bn(from->prime[0],NULL,RSAref_MAX_PLEN)) == NULL)
370 if ((to->q=RSAref_bin2bn(from->prime[1],NULL,RSAref_MAX_PLEN)) == NULL)
372 if ((to->dmp1=RSAref_bin2bn(from->pexp[0],NULL,RSAref_MAX_PLEN))
375 if ((to->dmq1=RSAref_bin2bn(fro
[all...]

Completed in 11 milliseconds