/external/openssh/ |
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) */
|
packet.h | 31 # define BIGNUM void 175 int sshpkt_put_bignum1(struct ssh *ssh, const BIGNUM *v); 176 int sshpkt_put_bignum2(struct ssh *ssh, const BIGNUM *v); 186 int sshpkt_get_bignum1(struct ssh *ssh, BIGNUM *v); 187 int sshpkt_get_bignum2(struct ssh *ssh, BIGNUM *v); 196 # undef BIGNUM
|
auth.h | 121 int auth_rsa(Authctxt *, BIGNUM *); 123 BIGNUM *auth_rsa_generate_challenge(Key *); 124 int auth_rsa_verify_response(Key *, BIGNUM *, u_char[]); 125 int auth_rsa_key_allowed(struct passwd *, BIGNUM *, Key **); 210 int ssh1_session_key(BIGNUM *);
|
rsa.c | 75 rsa_public_encrypt(BIGNUM *out, BIGNUM *in, RSA *key) 121 rsa_private_decrypt(BIGNUM *out, BIGNUM *in, RSA *key) 164 BIGNUM *aux = NULL;
|
kexdh.c | 51 const BIGNUM *client_dh_pub, 52 const BIGNUM *server_dh_pub, 53 const BIGNUM *shared_secret,
|
/external/wpa_supplicant_8/src/tls/ |
Makefile | 19 bignum.o \
|
/toolchain/binutils/binutils-2.25/gas/testsuite/gas/mips/ |
lui-1.l | 4 .*\.s:7: Error: bignum invalid
|
/external/v8/src/ |
dtoa.cc | 12 #include "src/bignum-dtoa.h" 76 // If the fast dtoa didn't succeed use the slower bignum version.
|
/hardware/interfaces/keymaster/3.0/vts/functional/ |
openssl_utils.h | 32 typedef std::unique_ptr<BIGNUM, UniquePtrDeleter<BIGNUM, BN_free>> BIGNUM_Ptr;
|
/external/vboot_reference/utility/ |
dumpRSAPublicKey.c | 8 * /tools/DumpPublicKey.java). Uses the OpenSSL X509 and BIGNUM library. 43 BIGNUM *N = key->n; 44 BIGNUM *Big1 = NULL, *Big2 = NULL, *Big32 = NULL, *BigMinus1 = NULL; 45 BIGNUM *B = NULL; 46 BIGNUM *N0inv= NULL, *R = NULL, *RR = NULL, *RRTemp = NULL, *NnumBits = NULL; 47 BIGNUM *n = NULL, *rr = NULL;
|
/external/tpm2/ |
CpriECC.c | 99 // This function makes a TPMS_ECC_POINT from a BIGNUM EC_POINT. 110 BIGNUM *bnX; 111 BIGNUM *bnY; 151 BIGNUM *bnP; 152 BIGNUM *bnA; 153 BIGNUM *bnB; 154 BIGNUM *bnX; 155 BIGNUM *bnY; 156 BIGNUM *bnN; 157 BIGNUM *bnH [all...] |
MathFunctions.c | 219 BIGNUM *bnA; 220 BIGNUM *bnB; 221 BIGNUM *bnP; 230 // Allocate space for BIGNUM context 286 BIGNUM *bnN; 287 BIGNUM *bnD; 288 BIGNUM *bnQ; 289 BIGNUM *bnR; 312 // Convert the BIGNUM result back to our format 454 BIGNUM *bnC [all...] |
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/lib2to3/tests/data/ |
infinite_recursion.py | 360 BIGNUM = bignum_st
370 ('A', POINTER(BIGNUM)),
371 ('Ai', POINTER(BIGNUM)),
372 ('mod', POINTER(BIGNUM)),
382 ('RR', BIGNUM),
383 ('N', BIGNUM),
384 ('Ni', BIGNUM),
394 ('N', BIGNUM),
395 ('Nr', BIGNUM),
527 ('compute_key', CFUNCTYPE(c_int, POINTER(c_ubyte), POINTER(BIGNUM), POINTER(DH))), [all...] |
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/lib2to3/tests/data/ |
infinite_recursion.py | 360 BIGNUM = bignum_st 370 ('A', POINTER(BIGNUM)), 371 ('Ai', POINTER(BIGNUM)), 372 ('mod', POINTER(BIGNUM)), 382 ('RR', BIGNUM), 383 ('N', BIGNUM), 384 ('Ni', BIGNUM), 394 ('N', BIGNUM), 395 ('Nr', BIGNUM), 527 ('compute_key', CFUNCTYPE(c_int, POINTER(c_ubyte), POINTER(BIGNUM), POINTER(DH))) [all...] |
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/lib2to3/tests/data/ |
infinite_recursion.py | 360 BIGNUM = bignum_st 370 ('A', POINTER(BIGNUM)), 371 ('Ai', POINTER(BIGNUM)), 372 ('mod', POINTER(BIGNUM)), 382 ('RR', BIGNUM), 383 ('N', BIGNUM), 384 ('Ni', BIGNUM), 394 ('N', BIGNUM), 395 ('Nr', BIGNUM), 527 ('compute_key', CFUNCTYPE(c_int, POINTER(c_ubyte), POINTER(BIGNUM), POINTER(DH))) [all...] |
/external/boringssl/src/include/openssl/ |
ecdsa.h | 99 BIGNUM *r; 100 BIGNUM *s; 106 /* ECDSA_SIG_free frees |sig| its member |BIGNUM|s. */ 132 BIGNUM **kinv, BIGNUM **rp); 138 const BIGNUM *kinv, const BIGNUM *rp, 145 unsigned int *sig_len, const BIGNUM *kinv, 146 const BIGNUM *rp, const EC_KEY *eckey);
|
rsa.h | 95 OPENSSL_EXPORT void RSA_get0_key(const RSA *rsa, const BIGNUM **out_n, 96 const BIGNUM **out_e, const BIGNUM **out_d); 101 OPENSSL_EXPORT void RSA_get0_factors(const RSA *rsa, const BIGNUM **out_p, 102 const BIGNUM **out_q); 109 OPENSSL_EXPORT void RSA_get0_crt_params(const RSA *rsa, const BIGNUM **out_dmp1, 110 const BIGNUM **out_dmq1, 111 const BIGNUM **out_iqmp); 124 OPENSSL_EXPORT int RSA_generate_key_ex(RSA *rsa, int bits, BIGNUM *e, 130 int num_primes, BIGNUM *e [all...] |
/prebuilts/gdb/darwin-x86/lib/python2.7/test/ |
test_kqueue.py | 73 bignum = sys.maxsize * 2 + 1 74 ev = select.kevent(bignum, 1, 2, 3, sys.maxsize, bignum) 75 self.assertEqual(ev.ident, bignum) 80 self.assertEqual(ev.udata, bignum)
|
/prebuilts/gdb/linux-x86/lib/python2.7/test/ |
test_kqueue.py | 73 bignum = sys.maxsize * 2 + 1 74 ev = select.kevent(bignum, 1, 2, 3, sys.maxsize, bignum) 75 self.assertEqual(ev.ident, bignum) 80 self.assertEqual(ev.udata, bignum)
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/ |
test_kqueue.py | 73 bignum = sys.maxsize * 2 + 1 74 ev = select.kevent(bignum, 1, 2, 3, sys.maxsize, bignum) 75 self.assertEqual(ev.ident, bignum) 80 self.assertEqual(ev.udata, bignum)
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/ |
test_kqueue.py | 73 bignum = sys.maxsize * 2 + 1 74 ev = select.kevent(bignum, 1, 2, 3, sys.maxsize, bignum) 75 self.assertEqual(ev.ident, bignum) 80 self.assertEqual(ev.udata, bignum)
|
/external/boringssl/src/crypto/bn/ |
internal.h | 143 BIGNUM *bn_expand(BIGNUM *bn, size_t bits); 204 int bn_set_words(BIGNUM *bn, const BN_ULONG *words, size_t num); 230 uint64_t bn_mont_n0(const BIGNUM *n); 231 int bn_mod_exp_base_2_vartime(BIGNUM *r, unsigned p, const BIGNUM *n); 244 int bn_mod_inverse_prime(BIGNUM *out, const BIGNUM *a, const BIGNUM *p, 250 int bn_mod_inverse_secret_prime(BIGNUM *out, const BIGNUM *a, const BIGNUM *p [all...] |
/external/boringssl/src/crypto/dh/ |
dh.c | 117 void DH_get0_key(const DH *dh, const BIGNUM **out_pub_key, 118 const BIGNUM **out_priv_key) { 127 void DH_get0_pqg(const DH *dh, const BIGNUM **out_p, const BIGNUM **out_q, 128 const BIGNUM **out_g) { 168 BIGNUM *t1, *t2; 260 BIGNUM *pub_key = NULL, *priv_key = NULL; 343 int DH_compute_key(unsigned char *out, const BIGNUM *peers_key, DH *dh) { 345 BIGNUM *shared_key; 405 static int int_dh_bn_cpy(BIGNUM **dst, const BIGNUM *src) [all...] |
/libcore/luni/src/main/native/ |
java_math_NativeBN.cpp | 39 static BIGNUM* toBigNum(jlong address) { 40 return reinterpret_cast<BIGNUM*>(static_cast<uintptr_t>(address)); 129 BIGNUM* a = toBigNum(a0); 153 BIGNUM* a = toBigNum(a0); 167 BIGNUM* a = toBigNum(a0); 191 BIGNUM* ret = toBigNum(ret0); 213 BIGNUM* ret = toBigNum(ret0); 251 BIGNUM* a = toBigNum(a0); 304 BIGNUM* a = toBigNum(a0); 320 BIGNUM* a = toBigNum(a0) [all...] |
/toolchain/binutils/binutils-2.25/gas/ |
flonum.h | 34 #include "bignum.h" 52 LITTLENUM_TYPE *low; /* low order littlenum of a bignum */ 53 LITTLENUM_TYPE *high; /* high order littlenum of a bignum */
|