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

1 2 3 4

  /external/chromium_org/third_party/openssl/openssl/crypto/ec/
ec_lcl.h 115 int (*point_init)(EC_POINT *);
116 void (*point_finish)(EC_POINT *);
117 void (*point_clear_finish)(EC_POINT *);
118 int (*point_copy)(EC_POINT *, const EC_POINT *);
127 int (*point_set_to_infinity)(const EC_GROUP *, EC_POINT *);
128 int (*point_set_Jprojective_coordinates_GFp)(const EC_GROUP *, EC_POINT *,
130 int (*point_get_Jprojective_coordinates_GFp)(const EC_GROUP *, const EC_POINT *,
132 int (*point_set_affine_coordinates)(const EC_GROUP *, EC_POINT *,
134 int (*point_get_affine_coordinates)(const EC_GROUP *, const EC_POINT *,
    [all...]
ec_print.c 60 const EC_POINT *point,
89 EC_POINT *EC_POINT_bn2point(const EC_GROUP *group,
91 EC_POINT *point,
96 EC_POINT *ret;
136 const EC_POINT *point,
179 EC_POINT *EC_POINT_hex2point(const EC_GROUP *group,
181 EC_POINT *point,
184 EC_POINT *ret=NULL;
ec.h 131 typedef struct ec_point_st EC_POINT;
232 * \param generator EC_POINT object with the generator.
238 int EC_GROUP_set_generator(EC_GROUP *group, const EC_POINT *generator, const BIGNUM *order, const BIGNUM *cofactor);
244 const EC_POINT *EC_GROUP_get0_generator(const EC_GROUP *group);
401 /* EC_POINT functions */
404 /** Creates a new EC_POINT object for the specified EC_GROUP
406 * \return newly created EC_POINT object or NULL if an error occurred
408 EC_POINT *EC_POINT_new(const EC_GROUP *group);
410 /** Frees a EC_POINT object
411 * \param point EC_POINT object to be free
    [all...]
ec_lib.c 284 int EC_GROUP_set_generator(EC_GROUP *group, const EC_POINT *generator, const BIGNUM *order, const BIGNUM *cofactor)
313 const EC_POINT *EC_GROUP_get0_generator(const EC_GROUP *group)
691 /* functions for EC_POINT objects */
693 EC_POINT *EC_POINT_new(const EC_GROUP *group)
695 EC_POINT *ret;
727 void EC_POINT_free(EC_POINT *point)
737 void EC_POINT_clear_free(EC_POINT *point)
750 int EC_POINT_copy(EC_POINT *dest, const EC_POINT *src)
768 EC_POINT *EC_POINT_dup(const EC_POINT *a, const EC_GROUP *group
    [all...]
ec2_smpl.c 303 /* Initializes an EC_POINT. */
304 int ec_GF2m_simple_point_init(EC_POINT *point)
313 /* Frees an EC_POINT. */
314 void ec_GF2m_simple_point_finish(EC_POINT *point)
322 /* Clears and frees an EC_POINT. */
323 void ec_GF2m_simple_point_clear_finish(EC_POINT *point)
332 /* Copy the contents of one EC_POINT into another. Assumes dest is initialized. */
333 int ec_GF2m_simple_point_copy(EC_POINT *dest, const EC_POINT *src)
344 /* Set an EC_POINT to the point at infinity.
    [all...]
ec_mult.c 87 EC_POINT **points; /* array with pre-calculated multiples of generator:
88 * 'num' pointers to EC_POINT objects followed by a NULL */
146 EC_POINT **p;
169 EC_POINT **p;
346 int ec_wNAF_mul(const EC_GROUP *group, EC_POINT *r, const BIGNUM *scalar,
347 size_t num, const EC_POINT *points[], const BIGNUM *scalars[], BN_CTX *ctx)
350 const EC_POINT *generator = NULL;
351 EC_POINT *tmp = NULL;
364 EC_POINT **val = NULL; /* precomputation */
365 EC_POINT **v
    [all...]
ec_oct.c 71 int EC_POINT_set_compressed_coordinates_GFp(const EC_GROUP *group, EC_POINT *point,
105 int EC_POINT_set_compressed_coordinates_GF2m(const EC_GROUP *group, EC_POINT *point,
132 size_t EC_POINT_point2oct(const EC_GROUP *group, const EC_POINT *point, point_conversion_form_t form,
167 int EC_POINT_oct2point(const EC_GROUP *group, EC_POINT *point,
  /external/openssl/crypto/ec/
ec_lcl.h 115 int (*point_init)(EC_POINT *);
116 void (*point_finish)(EC_POINT *);
117 void (*point_clear_finish)(EC_POINT *);
118 int (*point_copy)(EC_POINT *, const EC_POINT *);
127 int (*point_set_to_infinity)(const EC_GROUP *, EC_POINT *);
128 int (*point_set_Jprojective_coordinates_GFp)(const EC_GROUP *, EC_POINT *,
130 int (*point_get_Jprojective_coordinates_GFp)(const EC_GROUP *, const EC_POINT *,
132 int (*point_set_affine_coordinates)(const EC_GROUP *, EC_POINT *,
134 int (*point_get_affine_coordinates)(const EC_GROUP *, const EC_POINT *,
    [all...]
ec_print.c 60 const EC_POINT *point,
89 EC_POINT *EC_POINT_bn2point(const EC_GROUP *group,
91 EC_POINT *point,
96 EC_POINT *ret;
136 const EC_POINT *point,
179 EC_POINT *EC_POINT_hex2point(const EC_GROUP *group,
181 EC_POINT *point,
184 EC_POINT *ret=NULL;
ec.h 131 typedef struct ec_point_st EC_POINT;
232 * \param generator EC_POINT object with the generator.
238 int EC_GROUP_set_generator(EC_GROUP *group, const EC_POINT *generator, const BIGNUM *order, const BIGNUM *cofactor);
244 const EC_POINT *EC_GROUP_get0_generator(const EC_GROUP *group);
401 /* EC_POINT functions */
404 /** Creates a new EC_POINT object for the specified EC_GROUP
406 * \return newly created EC_POINT object or NULL if an error occurred
408 EC_POINT *EC_POINT_new(const EC_GROUP *group);
410 /** Frees a EC_POINT object
411 * \param point EC_POINT object to be free
    [all...]
ec_lib.c 284 int EC_GROUP_set_generator(EC_GROUP *group, const EC_POINT *generator, const BIGNUM *order, const BIGNUM *cofactor)
313 const EC_POINT *EC_GROUP_get0_generator(const EC_GROUP *group)
691 /* functions for EC_POINT objects */
693 EC_POINT *EC_POINT_new(const EC_GROUP *group)
695 EC_POINT *ret;
727 void EC_POINT_free(EC_POINT *point)
737 void EC_POINT_clear_free(EC_POINT *point)
750 int EC_POINT_copy(EC_POINT *dest, const EC_POINT *src)
768 EC_POINT *EC_POINT_dup(const EC_POINT *a, const EC_GROUP *group
    [all...]
ec2_smpl.c 303 /* Initializes an EC_POINT. */
304 int ec_GF2m_simple_point_init(EC_POINT *point)
313 /* Frees an EC_POINT. */
314 void ec_GF2m_simple_point_finish(EC_POINT *point)
322 /* Clears and frees an EC_POINT. */
323 void ec_GF2m_simple_point_clear_finish(EC_POINT *point)
332 /* Copy the contents of one EC_POINT into another. Assumes dest is initialized. */
333 int ec_GF2m_simple_point_copy(EC_POINT *dest, const EC_POINT *src)
344 /* Set an EC_POINT to the point at infinity.
    [all...]
ec_mult.c 87 EC_POINT **points; /* array with pre-calculated multiples of generator:
88 * 'num' pointers to EC_POINT objects followed by a NULL */
146 EC_POINT **p;
169 EC_POINT **p;
346 int ec_wNAF_mul(const EC_GROUP *group, EC_POINT *r, const BIGNUM *scalar,
347 size_t num, const EC_POINT *points[], const BIGNUM *scalars[], BN_CTX *ctx)
350 const EC_POINT *generator = NULL;
351 EC_POINT *tmp = NULL;
364 EC_POINT **val = NULL; /* precomputation */
365 EC_POINT **v
    [all...]
  /external/chromium_org/third_party/openssl/openssl/include/openssl/
ec.h 131 typedef struct ec_point_st EC_POINT;
232 * \param generator EC_POINT object with the generator.
238 int EC_GROUP_set_generator(EC_GROUP *group, const EC_POINT *generator, const BIGNUM *order, const BIGNUM *cofactor);
244 const EC_POINT *EC_GROUP_get0_generator(const EC_GROUP *group);
401 /* EC_POINT functions */
404 /** Creates a new EC_POINT object for the specified EC_GROUP
406 * \return newly created EC_POINT object or NULL if an error occurred
408 EC_POINT *EC_POINT_new(const EC_GROUP *group);
410 /** Frees a EC_POINT object
411 * \param point EC_POINT object to be free
    [all...]
ecdh.h 94 int ECDH_compute_key(void *out, size_t outlen, const EC_POINT *pub_key, EC_KEY *ecdh,
  /external/openssl/include/openssl/
ec.h 131 typedef struct ec_point_st EC_POINT;
232 * \param generator EC_POINT object with the generator.
238 int EC_GROUP_set_generator(EC_GROUP *group, const EC_POINT *generator, const BIGNUM *order, const BIGNUM *cofactor);
244 const EC_POINT *EC_GROUP_get0_generator(const EC_GROUP *group);
401 /* EC_POINT functions */
404 /** Creates a new EC_POINT object for the specified EC_GROUP
406 * \return newly created EC_POINT object or NULL if an error occurred
408 EC_POINT *EC_POINT_new(const EC_GROUP *group);
410 /** Frees a EC_POINT object
411 * \param point EC_POINT object to be free
    [all...]
  /external/chromium_org/third_party/openssl/openssl/crypto/ecdh/
ech_key.c 72 int ECDH_compute_key(void *out, size_t outlen, const EC_POINT *pub_key,
ech_locl.h 68 int (*compute_key)(void *key, size_t outlen, const EC_POINT *pub_key, EC_KEY *ecdh,
ech_ossl.c 82 static int ecdh_compute_key(void *out, size_t len, const EC_POINT *pub_key,
108 static int ecdh_compute_key(void *out, size_t outlen, const EC_POINT *pub_key,
113 EC_POINT *tmp=NULL;
ecdh.h 94 int ECDH_compute_key(void *out, size_t outlen, const EC_POINT *pub_key, EC_KEY *ecdh,
  /external/openssl/crypto/ecdh/
ech_key.c 72 int ECDH_compute_key(void *out, size_t outlen, const EC_POINT *pub_key,
ech_locl.h 68 int (*compute_key)(void *key, size_t outlen, const EC_POINT *pub_key, EC_KEY *ecdh,
ech_ossl.c 82 static int ecdh_compute_key(void *out, size_t len, const EC_POINT *pub_key,
108 static int ecdh_compute_key(void *out, size_t outlen, const EC_POINT *pub_key,
113 EC_POINT *tmp=NULL;
  /external/openssh/
buffer.h 92 int buffer_put_ecpoint_ret(Buffer *, const EC_GROUP *, const EC_POINT *);
93 void buffer_put_ecpoint(Buffer *, const EC_GROUP *, const EC_POINT *);
94 int buffer_get_ecpoint_ret(Buffer *, const EC_GROUP *, EC_POINT *);
95 void buffer_get_ecpoint(Buffer *, const EC_GROUP *, EC_POINT *);
bufec.c 46 * Append an EC_POINT to the buffer as a string containing a SEC1 encoded
51 const EC_POINT *point)
89 const EC_POINT *point)
97 EC_POINT *point)
111 error("%s: EC_POINT too long: %u > max %u", __func__,
116 error("%s: EC_POINT buffer is empty", __func__);
120 error("%s: EC_POINT is in an incorrect form: "
140 EC_POINT *point)

Completed in 402 milliseconds

1 2 3 4