/external/boringssl/src/include/openssl/ |
asn1.h | 793 OPENSSL_EXPORT ASN1_INTEGER *BN_to_ASN1_INTEGER(const BIGNUM *bn, ASN1_INTEGER *ai); 794 OPENSSL_EXPORT BIGNUM *ASN1_INTEGER_to_BN(const ASN1_INTEGER *ai,BIGNUM *bn); 798 OPENSSL_EXPORT ASN1_ENUMERATED *BN_to_ASN1_ENUMERATED(BIGNUM *bn, ASN1_ENUMERATED *ai); 799 OPENSSL_EXPORT BIGNUM *ASN1_ENUMERATED_to_BN(ASN1_ENUMERATED *ai,BIGNUM *bn); [all...] |
/external/wpa_supplicant_8/src/eap_peer/ |
eap_pwd.c | 39 BIGNUM *k; 40 BIGNUM *private_value; 41 BIGNUM *server_scalar; 42 BIGNUM *my_scalar; 362 BIGNUM *mask = NULL, *x = NULL, *y = NULL, *cofactor = NULL; 574 BIGNUM *x = NULL, *y = NULL;
|
/device/linaro/bootloader/edk2/CryptoPkg/Library/BaseCryptLib/Pk/ |
CryptRsaExt.c | 64 BIGNUM *BnKey;
210 BIGNUM *KeyE;
|
/external/boringssl/src/crypto/dsa/ |
dsa_asn1.c | 67 static int parse_integer(CBS *cbs, BIGNUM **out) { 76 static int marshal_integer(CBB *cbb, BIGNUM *bn) {
|
/external/boringssl/src/crypto/ecdsa/ |
ecdsa_test.cc | 103 EC_KEY *eckey, const BIGNUM *order) { 177 const BIGNUM *order = EC_GROUP_get0_order(group.get());
|
/external/protobuf/ruby/src/main/java/com/google/protobuf/jruby/ |
Utils.java | 174 RubyBignum bignum = RubyBignum.newBignum(runtime, ((RubyFloat) value).getDoubleValue()); local 175 return RubyBignum.big2ulong(bignum);
|
/external/webrtc/webrtc/base/ |
opensslidentity.cc | 51 BIGNUM* exponent = BN_new(); 97 BIGNUM* serial_number = NULL;
|
/system/extras/verity/ |
verify_boot_signature.c | 167 BIGNUM expected; 168 BIGNUM value;
|
/toolchain/binutils/binutils-2.25/gas/ |
read.c | [all...] |
expr.h | 134 O_constant must be extended into a bignum (i.e., it is not used
|
/external/boringssl/src/crypto/ec/ |
example_mul.c | 80 BIGNUM *n = NULL;
|
p256-64.c | 102 /* BN_to_felem converts an OpenSSL BIGNUM into an felem. */ 103 static int BN_to_felem(felem out, const BIGNUM *bn) { 125 /* felem_to_BN converts an felem into an OpenSSL BIGNUM. */ 126 static BIGNUM *smallfelem_to_BN(BIGNUM *out, const smallfelem in) { [all...] |
p256-x86_64_test.cc | 147 bssl::UniquePtr<BIGNUM> x(BN_new()), y(BN_new()), z(BN_new()); 148 bssl::UniquePtr<BIGNUM> p(BN_bin2bn(kP, sizeof(kP), nullptr));
|
/external/llvm/include/llvm/ADT/ |
APInt.h | 36 // bignum. [all...] |
/external/openssh/ |
kexdhc.c | 100 BIGNUM *dh_server_pub = NULL, *shared_secret = NULL;
|
kexdhs.c | 91 BIGNUM *shared_secret = NULL, *dh_client_pub = NULL;
|
kexecdhc.c | 105 BIGNUM *shared_secret = NULL;
|
kexecdhs.c | 69 BIGNUM *shared_secret = NULL;
|
sshd.c | 1034 * bignum e (only if ephemeral_key_follows == 1) 1035 * bignum n " 1036 * bignum d " 1037 * bignum iqmp " 1038 * bignum p " 1039 * bignum q " [all...] |
/libcore/luni/src/main/java/java/math/ |
Multiplication.java | 82 // BEGIN android-note: multiply has been removed in favor of using OpenSSL BIGNUM
|
/system/keymaster/ |
rsa_key_factory.cpp | 83 UniquePtr<BIGNUM, BIGNUM_Delete> exponent(BN_new());
|
/external/llvm/lib/Support/ |
APInt.cpp | [all...] |
/external/conscrypt/common/src/jni/main/cpp/ |
NativeCrypto.cpp | 127 * Converts a Java byte[] two's complement to an OpenSSL BIGNUM. This will 128 * allocate the BIGNUM if *dest == nullptr. Returns true on success. If the 131 static bool arrayToBignum(JNIEnv* env, jbyteArray source, BIGNUM** dest) { 174 BIGNUM *ret = BN_bin2bn(tmp, tmpSize, *dest); 176 Errors::jniThrowRuntimeException(env, "Conversion to BIGNUM failed"); 224 * Converts an OpenSSL BIGNUM to a Java byte[] array in two's complement. 226 static jbyteArray bignumToArray(JNIEnv* env, const BIGNUM* source, const char* sourceName) { 890 Errors::jniThrowRuntimeException(env, "Unable to convert BigInteger to BIGNUM"); 933 bssl::UniquePtr<BIGNUM> key(nullptr); 935 BIGNUM* keyRef = nullptr [all...] |
/external/swiftshader/third_party/LLVM/lib/Support/ |
APInt.cpp | [all...] |
/external/boringssl/src/crypto/evp/ |
p_rsa.c | 78 BIGNUM *pub_exp; 628 int EVP_PKEY_CTX_set_rsa_keygen_pubexp(EVP_PKEY_CTX *ctx, BIGNUM *e) {
|