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

12 3

  /external/boringssl/src/crypto/ec/
ec_asn1.c 75 EC_KEY *EC_KEY_parse_private_key(CBS *cbs, const EC_GROUP *group) {
87 EC_GROUP *inner_group = NULL;
327 EC_GROUP *EC_KEY_parse_curve_name(CBS *cbs) {
348 int EC_KEY_marshal_curve_name(CBB *cbb, const EC_GROUP *group) {
370 EC_GROUP *EC_KEY_parse_parameters(CBS *cbs) {
412 const EC_GROUP *group = NULL;
452 EC_GROUP *group = EC_KEY_parse_parameters(&cbs);
p256-x86_64.c 217 static int ecp_nistz256_windowed_mul(const EC_GROUP *group, P256_POINT *r,
367 const EC_GROUP *group, EC_POINT *r, const BIGNUM *g_scalar,
497 static int ecp_nistz256_get_affine(const EC_GROUP *group, const EC_POINT *point,
ec_key.c 236 const EC_GROUP *EC_KEY_get0_group(const EC_KEY *key) { return key->group; }
238 int EC_KEY_set_group(EC_KEY *key, const EC_GROUP *group) {
ec_test.cc 247 bssl::UniquePtr<EC_GROUP> group(
289 const EC_GROUP *const group = EC_KEY_get0_group(key.get());
322 const EC_GROUP *const group = EC_KEY_get0_group(key.get());
349 bssl::UniquePtr<EC_GROUP> group(EC_GROUP_new_by_curve_name(GetParam().nid));
  /external/conscrypt/common/src/main/java/org/conscrypt/
OpenSSLECPublicKey.java 51 this.group = new OpenSSLECGroupContext(new NativeRef.EC_GROUP(
163 group = new OpenSSLECGroupContext(new NativeRef.EC_GROUP(
NativeCrypto.java 95 NativeRef.EC_GROUP ecGroupRef);
129 public static native long EVP_PKEY_new_EC_KEY(NativeRef.EC_GROUP groupRef,
137 public static native String EC_GROUP_get_curve_name(NativeRef.EC_GROUP groupRef);
139 public static native byte[][] EC_GROUP_get_curve(NativeRef.EC_GROUP groupRef);
143 public static native long EC_GROUP_get_generator(NativeRef.EC_GROUP groupRef);
145 public static native byte[] EC_GROUP_get_order(NativeRef.EC_GROUP groupRef);
147 public static native int EC_GROUP_get_degree(NativeRef.EC_GROUP groupRef);
149 public static native byte[] EC_GROUP_get_cofactor(NativeRef.EC_GROUP groupRef);
151 public static native long EC_POINT_new(NativeRef.EC_GROUP groupRef);
155 public static native byte[][] EC_POINT_get_affine_coordinates(NativeRef.EC_GROUP groupRef
    [all...]
OpenSSLECDHKeyAgreement.java 130 int fieldSizeBits = NativeCrypto.EC_GROUP_get_degree(new NativeRef.EC_GROUP(
OpenSSLECPrivateKey.java 55 this.group = new OpenSSLECGroupContext(new NativeRef.EC_GROUP(
238 group = new OpenSSLECGroupContext(new NativeRef.EC_GROUP(
  /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 80 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 220 int sshbuf_get_ec(struct sshbuf *buf, EC_POINT *v, const EC_GROUP *g);
222 int sshbuf_put_ec(struct sshbuf *buf, const EC_POINT *v, const EC_GROUP *g);
kexecdhs.c 67 const EC_GROUP *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/ecdsa/
ecdsa.c 147 const EC_GROUP *group;
234 const EC_GROUP *group;
354 const EC_GROUP *group;
ecdsa_asn1.c 77 const EC_GROUP *group = EC_KEY_get0_group(key);
  /external/boringssl/src/crypto/evp/
p_ec.c 157 const EC_GROUP *group;
  /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...]
  /bootable/recovery/
verifier.cpp 390 std::unique_ptr<EC_GROUP, void (*)(EC_GROUP*)> group(
  /external/boringssl/src/ssl/
ssl_ecdh.c 56 EC_GROUP *group = EC_GROUP_new_by_curve_name(ctx->method->nid);
100 EC_GROUP *group = EC_GROUP_new_by_curve_name(ctx->method->nid);

Completed in 1008 milliseconds

12 3