ARM Shanghai IoT Team (Internal) / newMiniTLS-GPL

Fork of MiniTLS-GPL by Donatien Garnier

Embed: (wiki syntax)

« Back to documentation index

crypto_ecc_point_t Struct Reference

crypto_ecc_point_t Struct Reference

A point on a ECC curve, stored in Jacbobian format such that (x,y,z) => (x/z^2, y/z^3, 1) when interpretted as affine. More...

#include <crypto_ecc.h>

Data Fields

fp_int x
 The x co-ordinate.
fp_int y
 The y co-ordinate.
fp_int z
 The z co-ordinate.

Detailed Description

A point on a ECC curve, stored in Jacbobian format such that (x,y,z) => (x/z^2, y/z^3, 1) when interpretted as affine.

Definition at line 82 of file crypto_ecc.h.


Field Documentation

fp_int x

The x co-ordinate.

Definition at line 85 of file crypto_ecc.h.

fp_int y

The y co-ordinate.

Definition at line 89 of file crypto_ecc.h.

fp_int z

The z co-ordinate.

Definition at line 93 of file crypto_ecc.h.