/external/openssh/ |
kexgex.c | 48 int min, int wantbits, int max, BIGNUM *prime, BIGNUM *gen, 49 BIGNUM *client_dh_pub, 50 BIGNUM *server_dh_pub, 51 BIGNUM *shared_secret,
|
kexdh.c | 47 BIGNUM *client_dh_pub, 48 BIGNUM *server_dh_pub, 49 BIGNUM *shared_secret,
|
packet.h | 46 void packet_put_bignum(BIGNUM * value); 47 void packet_put_bignum2(BIGNUM * value); 66 void packet_get_bignum(BIGNUM * value); 67 void packet_get_bignum2(BIGNUM * value);
|
ssh1.h | 28 #define SSH_CMSG_SESSION_KEY 3 /* key (BIGNUM) */ 31 #define SSH_CMSG_AUTH_RSA 6 /* modulus (BIGNUM) */ 32 #define SSH_SMSG_AUTH_RSA_CHALLENGE 7 /* int (BIGNUM) */ 33 #define SSH_CMSG_AUTH_RSA_RESPONSE 8 /* int (BIGNUM) */
|
auth.h | 113 int auth_rsa(Authctxt *, BIGNUM *); 115 BIGNUM *auth_rsa_generate_challenge(Key *); 116 int auth_rsa_verify_response(Key *, BIGNUM *, u_char[]); 117 int auth_rsa_key_allowed(struct passwd *, BIGNUM *, Key **); 161 void auth2_jpake_get_pwdata(Authctxt *, BIGNUM **, char **, char **); 187 int ssh1_session_key(BIGNUM *);
|
/external/openssl/crypto/jpake/ |
jpaketest.c | 18 static void showbn(const char *name, const BIGNUM *bn) 117 BIGNUM *p = NULL; 118 BIGNUM *g = NULL; 119 BIGNUM *q = NULL; 120 BIGNUM *secret = BN_new();
|
/external/chromium_org/third_party/openssl/openssl/crypto/bn/ |
bn_exp.c | 132 int BN_exp(BIGNUM *r, const BIGNUM *a, const BIGNUM *p, BN_CTX *ctx) 135 BIGNUM *v,*rr; 176 int BN_mod_exp(BIGNUM *r, const BIGNUM *a, const BIGNUM *p, const BIGNUM *m, 251 int BN_mod_exp_recp(BIGNUM *r, const BIGNUM *a, const BIGNUM *p [all...] |
bn_depr.c | 68 BIGNUM *BN_generate_prime(BIGNUM *ret, int bits, int safe, 69 const BIGNUM *add, const BIGNUM *rem, 73 BIGNUM *rnd=NULL; 94 int BN_is_prime(const BIGNUM *a, int checks, void (*callback)(int,int,void *), 102 int BN_is_prime_fasttest(const BIGNUM *a, int checks,
|
bn_rand.c | 118 static int bnrand(int pseudorand, BIGNUM *rnd, int bits, int top, int bottom) 211 int BN_rand(BIGNUM *rnd, int bits, int top, int bottom) 216 int BN_pseudo_rand(BIGNUM *rnd, int bits, int top, int bottom) 222 int BN_bntest_rand(BIGNUM *rnd, int bits, int top, int bottom) 230 static int bn_rand_range(int pseudo, BIGNUM *r, const BIGNUM *range) 232 int (*bn_rand)(BIGNUM *, int, int, int) = pseudo ? BN_pseudo_rand : BN_rand; 297 int BN_rand_range(BIGNUM *r, const BIGNUM *range) 302 int BN_pseudo_rand_range(BIGNUM *r, const BIGNUM *range [all...] |
bn_shift.c | 63 int BN_lshift1(BIGNUM *r, const BIGNUM *a) 99 int BN_rshift1(BIGNUM *r, const BIGNUM *a) 135 int BN_lshift(BIGNUM *r, const BIGNUM *a, int n) 171 int BN_rshift(BIGNUM *r, const BIGNUM *a, int n)
|
/external/openssl/crypto/bn/ |
bn_exp.c | 132 int BN_exp(BIGNUM *r, const BIGNUM *a, const BIGNUM *p, BN_CTX *ctx) 135 BIGNUM *v,*rr; 176 int BN_mod_exp(BIGNUM *r, const BIGNUM *a, const BIGNUM *p, const BIGNUM *m, 251 int BN_mod_exp_recp(BIGNUM *r, const BIGNUM *a, const BIGNUM *p [all...] |
bn_depr.c | 68 BIGNUM *BN_generate_prime(BIGNUM *ret, int bits, int safe, 69 const BIGNUM *add, const BIGNUM *rem, 73 BIGNUM *rnd=NULL; 94 int BN_is_prime(const BIGNUM *a, int checks, void (*callback)(int,int,void *), 102 int BN_is_prime_fasttest(const BIGNUM *a, int checks,
|
bn_rand.c | 118 static int bnrand(int pseudorand, BIGNUM *rnd, int bits, int top, int bottom) 211 int BN_rand(BIGNUM *rnd, int bits, int top, int bottom) 216 int BN_pseudo_rand(BIGNUM *rnd, int bits, int top, int bottom) 222 int BN_bntest_rand(BIGNUM *rnd, int bits, int top, int bottom) 230 static int bn_rand_range(int pseudo, BIGNUM *r, const BIGNUM *range) 232 int (*bn_rand)(BIGNUM *, int, int, int) = pseudo ? BN_pseudo_rand : BN_rand; 297 int BN_rand_range(BIGNUM *r, const BIGNUM *range) 302 int BN_pseudo_rand_range(BIGNUM *r, const BIGNUM *range [all...] |
bn_shift.c | 63 int BN_lshift1(BIGNUM *r, const BIGNUM *a) 99 int BN_rshift1(BIGNUM *r, const BIGNUM *a) 135 int BN_lshift(BIGNUM *r, const BIGNUM *a, int n) 171 int BN_rshift(BIGNUM *r, const BIGNUM *a, int n)
|
/external/chromium_org/third_party/openssl/openssl/crypto/ecdsa/ |
ecs_ossl.c | 65 const BIGNUM *, const BIGNUM *, EC_KEY *eckey); 66 static int ecdsa_sign_setup(EC_KEY *eckey, BN_CTX *ctx_in, BIGNUM **kinvp, 67 BIGNUM **rp); 89 static int ecdsa_sign_setup(EC_KEY *eckey, BN_CTX *ctx_in, BIGNUM **kinvp, 90 BIGNUM **rp) 93 BIGNUM *k = NULL, *r = NULL, *order = NULL, *X = NULL; 223 const BIGNUM *in_kinv, const BIGNUM *in_r, EC_KEY *eckey) 226 BIGNUM *kinv=NULL, *s, *m=NULL,*tmp=NULL,*order=NULL [all...] |
ecs_sign.c | 68 const BIGNUM *kinv, const BIGNUM *rp, EC_KEY *eckey) 83 *sig, unsigned int *siglen, const BIGNUM *kinv, const BIGNUM *r, 99 int ECDSA_sign_setup(EC_KEY *eckey, BN_CTX *ctx_in, BIGNUM **kinvp, 100 BIGNUM **rp)
|
/external/openssl/crypto/ecdsa/ |
ecs_ossl.c | 65 const BIGNUM *, const BIGNUM *, EC_KEY *eckey); 66 static int ecdsa_sign_setup(EC_KEY *eckey, BN_CTX *ctx_in, BIGNUM **kinvp, 67 BIGNUM **rp); 89 static int ecdsa_sign_setup(EC_KEY *eckey, BN_CTX *ctx_in, BIGNUM **kinvp, 90 BIGNUM **rp) 93 BIGNUM *k = NULL, *r = NULL, *order = NULL, *X = NULL; 223 const BIGNUM *in_kinv, const BIGNUM *in_r, EC_KEY *eckey) 226 BIGNUM *kinv=NULL, *s, *m=NULL,*tmp=NULL,*order=NULL [all...] |
/external/chromium_org/third_party/openssl/openssl/crypto/ec/ |
ec2_smpl.c | 198 const BIGNUM *p, const BIGNUM *a, const BIGNUM *b, BN_CTX *ctx) 230 int ec_GF2m_simple_group_get_curve(const EC_GROUP *group, BIGNUM *p, BIGNUM *a, BIGNUM *b, BN_CTX *ctx) 269 BIGNUM *b; 359 const BIGNUM *x, const BIGNUM *y, BN_CTX *ctx) 386 BIGNUM *x, BIGNUM *y, BN_CTX *ctx [all...] |
ecp_nist.c | 129 int ec_GFp_nist_group_set_curve(EC_GROUP *group, const BIGNUM *p, 130 const BIGNUM *a, const BIGNUM *b, BN_CTX *ctx) 134 BIGNUM *tmp_bn; 168 int ec_GFp_nist_field_mul(const EC_GROUP *group, BIGNUM *r, const BIGNUM *a, 169 const BIGNUM *b, BN_CTX *ctx) 194 int ec_GFp_nist_field_sqr(const EC_GROUP *group, BIGNUM *r, const BIGNUM *a,
|
/external/openssl/crypto/ec/ |
ec2_smpl.c | 198 const BIGNUM *p, const BIGNUM *a, const BIGNUM *b, BN_CTX *ctx) 230 int ec_GF2m_simple_group_get_curve(const EC_GROUP *group, BIGNUM *p, BIGNUM *a, BIGNUM *b, BN_CTX *ctx) 269 BIGNUM *b; 359 const BIGNUM *x, const BIGNUM *y, BN_CTX *ctx) 386 BIGNUM *x, BIGNUM *y, BN_CTX *ctx [all...] |
ecp_nist.c | 129 int ec_GFp_nist_group_set_curve(EC_GROUP *group, const BIGNUM *p, 130 const BIGNUM *a, const BIGNUM *b, BN_CTX *ctx) 134 BIGNUM *tmp_bn; 168 int ec_GFp_nist_field_mul(const EC_GROUP *group, BIGNUM *r, const BIGNUM *a, 169 const BIGNUM *b, BN_CTX *ctx) 194 int ec_GFp_nist_field_sqr(const EC_GROUP *group, BIGNUM *r, const BIGNUM *a,
|
/external/wpa_supplicant_8/src/tls/ |
rsa.c | 13 #include "bignum.h" 19 struct bignum *n; /* modulus (p * q) */ 20 struct bignum *e; /* public exponent */ 22 struct bignum *d; /* private exponent */ 23 struct bignum *p; /* prime p (factor of n) */ 24 struct bignum *q; /* prime q (factor of n) */ 25 struct bignum *dmp1; /* d mod (p - 1); CRT exponent */ 26 struct bignum *dmq1; /* d mod (q - 1); CRT exponent */ 27 struct bignum *iqmp; /* 1 / q mod p; CRT coefficient */ 32 struct bignum *num [all...] |
Makefile | 19 bignum.o \
|
/external/chromium_org/third_party/openssl/openssl/crypto/rsa/ |
rsa_eay.c | 128 static int RSA_eay_mod_exp(BIGNUM *r0, const BIGNUM *i, RSA *rsa, BN_CTX *ctx); 156 BIGNUM *f,*ret; 317 static int rsa_blinding_convert(BN_BLINDING *b, BIGNUM *f, BIGNUM *unblind, 336 static int rsa_blinding_invert(BN_BLINDING *b, BIGNUM *f, BIGNUM *unblind, 353 BIGNUM *f, *ret, *res; 361 BIGNUM *unblind = NULL; 435 BIGNUM local_d [all...] |
/external/openssl/crypto/rsa/ |
rsa_eay.c | 128 static int RSA_eay_mod_exp(BIGNUM *r0, const BIGNUM *i, RSA *rsa, BN_CTX *ctx); 156 BIGNUM *f,*ret; 317 static int rsa_blinding_convert(BN_BLINDING *b, BIGNUM *f, BIGNUM *unblind, 336 static int rsa_blinding_invert(BN_BLINDING *b, BIGNUM *f, BIGNUM *unblind, 353 BIGNUM *f, *ret, *res; 361 BIGNUM *unblind = NULL; 435 BIGNUM local_d [all...] |