HomeSort by relevance Sort by last modified time
    Searched refs:EC_GROUP (Results 26 - 50 of 66) sorted by null

12 3

  /external/boringssl/src/crypto/ecdh/
ecdh.c 100 const EC_GROUP *const group = EC_KEY_get0_group(priv_key);
  /external/openssh/
kexecdh.c 52 const EC_GROUP *ec_group,
80 (r = sshbuf_put_ec(b, client_dh_pub, ec_group)) != 0 ||
81 (r = sshbuf_put_ec(b, server_dh_pub, ec_group)) != 0 ||
key.h 79 int key_ec_validate_public(const EC_GROUP *, const EC_POINT *);
sshbuf-getput-crypto.c 76 get_ec(const u_char *d, size_t len, EC_POINT *v, const EC_GROUP *g)
90 sshbuf_get_ec(struct sshbuf *buf, EC_POINT *v, const EC_GROUP *g)
192 sshbuf_put_ec(struct sshbuf *buf, const EC_POINT *v, const EC_GROUP *g)
kexecdhc.c 59 const EC_GROUP *group;
85 kex->ec_group = group;
102 const EC_GROUP *group;
118 group = kex->ec_group;
opacket.c 100 ssh_packet_put_ecpoint(struct ssh *ssh, const EC_GROUP *curve,
176 ssh_packet_get_ecpoint(struct ssh *ssh, const EC_GROUP *curve, EC_POINT *point)
opacket.h 11 void ssh_packet_put_ecpoint(struct ssh *, const EC_GROUP *, const EC_POINT *);
22 void ssh_packet_get_ecpoint(struct ssh *, const EC_GROUP *, EC_POINT *);
sshbuf.h 228 int sshbuf_get_ec(struct sshbuf *buf, EC_POINT *v, const EC_GROUP *g);
230 int sshbuf_put_ec(struct sshbuf *buf, const EC_POINT *v, const EC_GROUP *g);
kexecdhs.c 67 const EC_GROUP *group;
  /external/conscrypt/common/src/main/java/org/conscrypt/
NativeCrypto.java 94 static native long getECPrivateKeyWrapper(PrivateKey key, NativeRef.EC_GROUP ecGroupRef);
125 NativeRef.EC_GROUP groupRef, NativeRef.EC_POINT pubkeyRef, byte[] privkey);
132 static native String EC_GROUP_get_curve_name(NativeRef.EC_GROUP groupRef);
134 static native byte[][] EC_GROUP_get_curve(NativeRef.EC_GROUP groupRef);
138 static native long EC_GROUP_get_generator(NativeRef.EC_GROUP groupRef);
140 static native byte[] EC_GROUP_get_order(NativeRef.EC_GROUP groupRef);
142 static native int EC_GROUP_get_degree(NativeRef.EC_GROUP groupRef);
144 static native byte[] EC_GROUP_get_cofactor(NativeRef.EC_GROUP groupRef);
146 static native long EC_POINT_new(NativeRef.EC_GROUP groupRef);
151 NativeRef.EC_GROUP groupRef, NativeRef.EC_POINT pointRef)
    [all...]
OpenSSLECDHKeyAgreement.java 130 int fieldSizeBits = NativeCrypto.EC_GROUP_get_degree(new NativeRef.EC_GROUP(
OpenSSLECPrivateKey.java 52 this.group = new OpenSSLECGroupContext(new NativeRef.EC_GROUP(
235 group = new OpenSSLECGroupContext(new NativeRef.EC_GROUP(
  /system/keymaster/
ec_key_factory.cpp 99 UniquePtr<EC_GROUP, EC_GROUP_Delete> group(ChooseGroup(ec_curve));
201 EC_GROUP* EcKeyFactory::ChooseGroup(size_t key_size_bits) {
222 EC_GROUP* EcKeyFactory::ChooseGroup(keymaster_ec_curve_t ec_curve) {
nist_curve_key_exchange_test.cpp 100 EC_GROUP* group = ec_get_group(curve);
  /external/boringssl/src/crypto/fipsmodule/ecdsa/
ecdsa.c 130 const EC_GROUP *group;
221 const EC_GROUP *group;
356 const EC_GROUP *group;
  /external/boringssl/src/crypto/evp/
p_ec.c 157 const EC_GROUP *group;
  /external/boringssl/src/ssl/
ssl_ecdh.cc 48 bssl::UniquePtr<EC_GROUP> group(EC_GROUP_new_by_curve_name(ctx->method->nid));
85 bssl::UniquePtr<EC_GROUP> group(EC_GROUP_new_by_curve_name(ctx->method->nid));
  /external/tpm2/
CpriECC.c 103 EC_GROUP *group, // IN: group for the point
138 // non-NULL points to a structure in groupContext static EC_GROUP *
140 static EC_GROUP *
148 EC_GROUP *group = NULL;
209 EC_GROUP *group, // IN: the group for the point
242 EC_GROUP *group, // IN: group for the point
268 EC_GROUP *group, // IN: group curve
354 EC_GROUP *group;
475 EC_GROUP *group;
    [all...]
  /external/boringssl/src/crypto/fipsmodule/ec/
ec_test.cc 247 bssl::UniquePtr<EC_GROUP> group(
289 const EC_GROUP *const group = EC_KEY_get0_group(key.get());
329 const EC_GROUP *const group = EC_KEY_get0_group(key.get());
356 bssl::UniquePtr<EC_GROUP> group(EC_GROUP_new_by_curve_name(GetParam().nid));
385 bssl::UniquePtr<EC_GROUP> group(EC_GROUP_new_by_curve_name(GetParam().nid));
p256-x86_64.c 218 static int ecp_nistz256_windowed_mul(const EC_GROUP *group, P256_POINT *r,
368 const EC_GROUP *group, EC_POINT *r, const BIGNUM *g_scalar,
498 static int ecp_nistz256_get_affine(const EC_GROUP *group, const EC_POINT *point,
ec_key.c 234 const EC_GROUP *EC_KEY_get0_group(const EC_KEY *key) { return key->group; }
236 int EC_KEY_set_group(EC_KEY *key, const EC_GROUP *group) {
  /bootable/recovery/
verifier.cpp 390 std::unique_ptr<EC_GROUP, void (*)(EC_GROUP*)> group(
  /external/boringssl/src/crypto/ecdsa_extra/
ecdsa_asn1.c 156 const EC_GROUP *group = EC_KEY_get0_group(key);
  /external/boringssl/src/include/openssl/
base.h 287 typedef struct ec_group_st EC_GROUP;
  /system/security/softkeymaster/
keymaster_openssl.cpp 66 void operator()(EC_GROUP* p) const { EC_GROUP_free(p); }
68 typedef std::unique_ptr<EC_GROUP, EC_GROUP_Delete> Unique_EC_GROUP;

Completed in 3174 milliseconds

12 3