/external/openssl/crypto/rsa/ |
rsa_lib.c | 346 static BIGNUM *rsa_get_public_exp(const BIGNUM *d, const BIGNUM *p, 347 const BIGNUM *q, BN_CTX *ctx) 349 BIGNUM *ret = NULL, *r0, *r1, *r2; 373 BIGNUM local_n; 374 BIGNUM *e,*n; 444 BIGNUM *bn,**t[6],*b; 454 k=sizeof(BIGNUM)*6; 464 bn=(BIGNUM *)p [all...] |
rsa_null.c | 81 static int RSA_null_mod_exp(const BIGNUM *r0, const BIGNUM *i, RSA *rsa); 136 static int RSA_null_mod_exp(BIGNUM *r0, BIGNUM *I, RSA *rsa)
|
/external/v8/test/cctest/ |
test-strtod.cc | 7 #include "bignum.h" 349 static int CompareBignumToDiyFp(const Bignum& bignum_digits, 352 Bignum bignum; local 353 bignum.AssignBignum(bignum_digits); 354 Bignum other; 357 bignum.MultiplyByPowerOfTen(bignum_exponent); 364 bignum.ShiftLeft(-diy_fp.e()); 366 return Bignum::Compare(bignum, other) [all...] |
/external/dropbear/libtommath/ |
bn_mp_shrink.c | 18 /* shrink a bignum */
|
bn_mp_toradix.c | 18 /* stores a bignum as a ASCII string in a given radix (2..64) */
|
/external/openssl/crypto/asn1/ |
a_enum.c | 138 ASN1_ENUMERATED *BN_to_ASN1_ENUMERATED(BIGNUM *bn, ASN1_ENUMERATED *ai) 174 BIGNUM *ASN1_ENUMERATED_to_BN(ASN1_ENUMERATED *ai, BIGNUM *bn) 176 BIGNUM *ret;
|
/external/openssl/crypto/bn/ |
bn_kron.c | 63 int BN_kronecker(const BIGNUM *a, const BIGNUM *b, BN_CTX *ctx) 68 BIGNUM *A, *B, *tmp; 70 * For any odd BIGNUM n,
|
exp.c | 16 BIGNUM a,b,c,r,rr,t,l;
|
bn_word.c | 63 BN_ULONG BN_mod_word(const BIGNUM *a, BN_ULONG w) 90 BN_ULONG BN_div_word(BIGNUM *a, BN_ULONG w) 126 int BN_add_word(BIGNUM *a, BN_ULONG w) 171 int BN_sub_word(BIGNUM *a, BN_ULONG w) 224 int BN_mul_word(BIGNUM *a, BN_ULONG w)
|
bn_mpi.c | 63 int BN_bn2mpi(const BIGNUM *a, unsigned char *d) 91 BIGNUM *BN_mpi2bn(const unsigned char *d, int n, BIGNUM *a)
|
/external/openssl/crypto/ec/ |
ec_print.c | 59 BIGNUM *EC_POINT_point2bn(const EC_GROUP *group, 62 BIGNUM *ret, 90 const BIGNUM *bn, 185 BIGNUM *tmp_bn=NULL;
|
/external/openssl/crypto/ecdsa/ |
ecs_locl.h | 72 const BIGNUM *inv, const BIGNUM *rp, EC_KEY *eckey); 73 int (*ecdsa_sign_setup)(EC_KEY *eckey, BN_CTX *ctx, BIGNUM **kinv, 74 BIGNUM **r);
|
/external/openssl/crypto/dsa/ |
dsa_ossl.c | 70 static int dsa_sign_setup(DSA *dsa, BN_CTX *ctx_in, BIGNUM **kinvp, BIGNUM **rp); 133 BIGNUM *kinv=NULL,*r=NULL,*s=NULL; 134 BIGNUM m; 135 BIGNUM xr; 202 static int dsa_sign_setup(DSA *dsa, BN_CTX *ctx_in, BIGNUM **kinvp, BIGNUM **rp) 205 BIGNUM k,kq,*K,*kinv=NULL,*r=NULL; 297 BIGNUM u1,u2,t1;
|
dsa_sign.c | 86 int DSA_sign_setup(DSA *dsa, BN_CTX *ctx_in, BIGNUM **kinvp, BIGNUM **rp)
|
dsa_key.c | 80 BIGNUM *pub_key=NULL,*priv_key=NULL; 103 BIGNUM local_prk; 104 BIGNUM *prk;
|
/external/dropbear/ |
filelist.txt | 106 bignum.c Some bignum helper functions
|
Android.mk | 6 dss.c bignum.c \
|
/external/openssl/crypto/dh/ |
dh_asn1.c | 83 ASN1_SIMPLE(DH, p, BIGNUM), 84 ASN1_SIMPLE(DH, g, BIGNUM),
|
dh_check.c | 78 BIGNUM *q=NULL; 122 int DH_check_pub_key(const DH *dh, const BIGNUM *pub_key, int *ret) 125 BIGNUM *q=NULL;
|
/external/v8/src/ |
dtoa.cc | 33 #include "bignum-dtoa.h" 97 // If the fast dtoa didn't succeed use the slower bignum version.
|
strtod.cc | 34 #include "bignum.h" 382 // Make sure that the Bignum will be able to hold all our numbers. 383 // Our Bignum implementation has a separate field for exponents. Shifts will 386 ASSERT(((kMaxDecimalPower + 1) * 333 / 100) < Bignum::kMaxSignificantBits); 387 Bignum input; 388 Bignum boundary; 401 int comparison = Bignum::Compare(input, boundary);
|
/external/v8/tools/ |
generate-ten-powers.scm | 36 v::bignum 42 ;;----------------bignum shifts ----------------------------------------------- 43 (define (bit-lshbx::bignum x::bignum by::bint) 46 (*bx x (exptbx #z2 (fixnum->bignum by))))) 48 (define (bit-rshbx::bignum x::bignum by::bint) 51 (/bx x (exptbx #z2 (fixnum->bignum by)))))
|
/external/wpa_supplicant_8/src/eap_common/ |
eap_pwd_common.c | 93 BIGNUM *x_candidate = NULL, *rnd = NULL, *cofactor = NULL; 266 int compute_keys(EAP_PWD_group *grp, BN_CTX *bnctx, BIGNUM *k, 267 BIGNUM *peer_scalar, BIGNUM *server_scalar,
|
/external/openssl/crypto/ |
ossl_typ.h | 109 #ifdef BIGNUM 110 #undef BIGNUM 112 typedef struct bignum_st BIGNUM;
|
/external/openssl/include/openssl/ |
ossl_typ.h | 109 #ifdef BIGNUM 110 #undef BIGNUM 112 typedef struct bignum_st BIGNUM;
|