HomeSort by relevance Sort by last modified time
    Searched refs:tmp_bn (Results 1 - 3 of 3) sorted by null

  /external/openssl/crypto/ec/
ec_print.c 185 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);
ecp_nist.c 134 BIGNUM *tmp_bn; local
140 if ((tmp_bn = BN_CTX_get(ctx)) == NULL) goto err;
  /external/openssl/crypto/bn/
bn_mul.c 1048 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;

Completed in 124 milliseconds