HomeSort by relevance Sort by last modified time
    Searched refs:EC_POINT_new (Results 1 - 25 of 29) sorted by null

1 2

  /external/openssl/crypto/ec/
ec_check.c 98 if ((point = EC_POINT_new(group)) == NULL) goto err;
ec_key.c 168 dest->pub_key = EC_POINT_new(src->group);
277 pub_key = EC_POINT_new(eckey->group);
325 if ((point = EC_POINT_new(eckey->group)) == NULL)
400 point = EC_POINT_new(key->group);
ec_print.c 111 if ((ret = EC_POINT_new(group)) == NULL)
ec_mult.c 607 *v = EC_POINT_new(group);
618 if (!(tmp = EC_POINT_new(group)))
839 if ((var[i] = EC_POINT_new(group)) == NULL)
846 if (!(tmp_point = EC_POINT_new(group)) || !(base = EC_POINT_new(group)))
ectest.c 132 P = EC_POINT_new(group);
199 EC_POINT *P = EC_POINT_new(group);
200 EC_POINT *Q = EC_POINT_new(group);
289 P = EC_POINT_new(group);
290 Q = EC_POINT_new(group);
291 R = EC_POINT_new(group);
833 P = EC_POINT_new(group);
834 Q = EC_POINT_new(group);
835 R = EC_POINT_new(group);
    [all...]
ec2_mult.c 343 if ((p = EC_POINT_new(group)) == NULL) goto err;
344 if ((acc = EC_POINT_new(group)) == NULL) goto err;
ec_lib.c 204 dest->generator = EC_POINT_new(dest);
294 group->generator = EC_POINT_new(group);
693 EC_POINT *EC_POINT_new(const EC_GROUP *group)
775 t = EC_POINT_new(group);
ec_asn1.c 944 if ((point = EC_POINT_new(ret)) == NULL) goto err;
1191 ret->pub_key = EC_POINT_new(ret->group);
    [all...]
ec_ameth.c 273 pub_key = EC_POINT_new(group);
ec.h 408 EC_POINT *EC_POINT_new(const EC_GROUP *group);
    [all...]
  /libcore/luni/src/main/java/org/apache/harmony/xnet/provider/jsse/
OpenSSLECPointContext.java 77 NativeCrypto.EC_POINT_new(group.getContext()));
OpenSSLECGroupContext.java 71 NativeCrypto.EC_POINT_new(ctx));
NativeCrypto.java 213 public static native long EC_POINT_new(long groupRef);
    [all...]
  /external/openssl/crypto/ecdh/
ech_ossl.c 140 if ((tmp=EC_POINT_new(group)) == NULL)
  /external/openssh/
kexecdhc.c 96 if ((server_public = EC_POINT_new(group)) == NULL)
97 fatal("%s: EC_POINT_new failed", __func__);
kexecdhs.c 90 if ((client_public = EC_POINT_new(group)) == NULL)
91 fatal("%s: EC_POINT_new failed", __func__);
key.c     [all...]
ssh-agent.c 528 q = EC_POINT_new(EC_KEY_get0_group(k->ecdsa));
    [all...]
  /external/openssl/crypto/ecdsa/
ecs_ossl.c 124 if ((tmp_point = EC_POINT_new(group)) == NULL)
440 if ((point = EC_POINT_new(group)) == NULL)
  /external/wpa_supplicant_8/src/eap_peer/
eap_pwd.c 276 ((data->my_element = EC_POINT_new(data->grp->group)) == NULL) ||
320 ((K = EC_POINT_new(data->grp->group)) == NULL) ||
321 ((point = EC_POINT_new(data->grp->group)) == NULL) ||
322 ((data->server_element = EC_POINT_new(data->grp->group)) == NULL))
  /external/wpa_supplicant_8/src/eap_common/
eap_pwd_common.c 131 ((grp->pwe = EC_POINT_new(grp->group)) == NULL) ||
  /external/wpa_supplicant_8/src/eap_server/
eap_server_pwd.c 201 ((data->my_element = EC_POINT_new(data->grp->group)) == NULL) ||
635 ((point = EC_POINT_new(data->grp->group)) == NULL) ||
636 ((K = EC_POINT_new(data->grp->group)) == NULL) ||
637 ((data->peer_element = EC_POINT_new(data->grp->group)) == NULL)) {
  /external/openssl/include/openssl/
ec.h 408 EC_POINT *EC_POINT_new(const EC_GROUP *group);
    [all...]
  /external/wpa_supplicant_8/src/crypto/
crypto_openssl.c 1085 return (struct crypto_ec_point *) EC_POINT_new(e->group);
1161 elem = EC_POINT_new(e->group);
  /external/openssl/ssl/
s3_srvr.c     [all...]

Completed in 267 milliseconds

1 2