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

  /libcore/luni/src/main/java/java/math/
NativeBN.java 36 public static native int BN_dec2bn(long a, String str);
37 // int BN_dec2bn(BIGNUM **a, const char *str);
BigInt.java 96 int usedLen = NativeBN.BN_dec2bn(this.bignum, s);
114 * BN_dec2bn and BN_hex2bn do very little checking, so we need to manually
  /external/boringssl/src/crypto/bn/
convert.c 420 int BN_dec2bn(BIGNUM **outp, const char *in) {
435 if (!BN_dec2bn(outp, in)) {
bn_test.cc 320 message(bc_file.get(), "BN_dec2bn");
    [all...]
  /external/boringssl/src/include/openssl/
bn.h 273 /* BN_dec2bn parses the leading decimal number from |in|, which may be
279 OPENSSL_EXPORT int BN_dec2bn(BIGNUM **outp, const char *in);
281 /* BN_asc2bn acts like |BN_dec2bn| or |BN_hex2bn| depending on whether |in|
    [all...]
  /libcore/luni/src/main/native/
java_math_NativeBN.cpp 167 int result = BN_dec2bn(&a, chars.c_str());
585 NATIVE_METHOD(NativeBN, BN_dec2bn, "(JLjava/lang/String;)I"),
  /external/boringssl/src/crypto/x509v3/
v3_utl.c 187 else ret = BN_dec2bn(&bn, value);
  /external/openssh/
sshkey.c 1246 if (BN_dec2bn(&v, cp) <= 0)
    [all...]

Completed in 273 milliseconds