HomeSort by relevance Sort by last modified time
    Searched defs:EC_POINT (Results 1 - 5 of 5) sorted by null

  /external/conscrypt/src/main/java/org/conscrypt/
NativeRef.java 63 public static class EC_POINT extends NativeRef {
64 public EC_POINT(long ctx) {
  /external/openssh/
packet.h 28 # define EC_POINT void
34 # define EC_POINT void
174 int sshpkt_put_ec(struct ssh *ssh, const EC_POINT *v, const EC_GROUP *g);
185 int sshpkt_get_ec(struct ssh *ssh, EC_POINT *v, const EC_GROUP *g);
199 # undef EC_POINT
203 # undef EC_POINT
sshkey.h 39 # define EC_POINT void
46 # define EC_POINT void
155 int sshkey_ec_validate_public(const EC_GROUP *, const EC_POINT *);
177 void sshkey_dump_ec_point(const EC_GROUP *, const EC_POINT *);
224 # undef EC_POINT
228 # undef EC_POINT
kex.h 43 # define EC_POINT void
48 # define EC_POINT void
200 const EC_POINT *, const EC_POINT *, const BIGNUM *, u_char *, size_t *);
224 # undef EC_POINT
  /external/boringssl/src/include/openssl/
ec.h 82 typedef struct ec_point_st EC_POINT;
119 /* EC_GROUP_get0_generator returns a pointer to the internal |EC_POINT| object
121 OPENSSL_EXPORT const EC_POINT *EC_GROUP_get0_generator(const EC_GROUP *group);
161 /* EC_POINT_new returns a fresh |EC_POINT| object in the given group, or NULL
163 OPENSSL_EXPORT EC_POINT *EC_POINT_new(const EC_GROUP *group);
166 OPENSSL_EXPORT void EC_POINT_free(EC_POINT *point);
170 OPENSSL_EXPORT void EC_POINT_clear_free(EC_POINT *point);
174 OPENSSL_EXPORT int EC_POINT_copy(EC_POINT *dest, const EC_POINT *src);
176 /* EC_POINT_dup returns a fresh |EC_POINT| that contains the same values a
    [all...]

Completed in 835 milliseconds