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

/macosx-10.10/OpenSSL098-52/src/crypto/ec/
H A Dec_print.c185 BIGNUM *tmp_bn=NULL; local
187 if (!BN_hex2bn(&tmp_bn, buf))
190 ret = EC_POINT_bn2point(group, tmp_bn, point, ctx);
192 BN_clear_free(tmp_bn);
H A Decp_nist.c131 BIGNUM *tmp_bn; local
137 if ((tmp_bn = BN_CTX_get(ctx)) == NULL) goto err;
/macosx-10.10/OpenSSL098-52/src/crypto/bn/
H A Dbn_mul.c1048 BIGNUM *tmp_bn = (BIGNUM *)b;
1049 if (bn_wexpand(tmp_bn,al) == NULL) goto err;
1050 tmp_bn->d[bl]=0;
1056 BIGNUM *tmp_bn = (BIGNUM *)a;
1057 if (bn_wexpand(tmp_bn,bl) == NULL) goto err;
1058 tmp_bn->d[al]=0;
/macosx-10.10/OpenSSH-189/osslshim/ossl/
H A Dossl-bn.c3877 BIGNUM *tmp_bn = (BIGNUM *)b;
3878 if (bn_wexpand(tmp_bn, al) == NULL) {
3881 tmp_bn->d[bl] = 0;
3885 BIGNUM *tmp_bn = (BIGNUM *)a;
3886 if (bn_wexpand(tmp_bn, bl) == NULL) {
3889 tmp_bn->d[al] = 0;

Completed in 182 milliseconds