Example program to test AES-GCM functionality. Used for a workshop

Dependencies:   mbed

Embed: (wiki syntax)

« Back to documentation index

ecp_point Struct Reference

ecp_point Struct Reference

ECP point structure (jacobian coordinates) More...

#include <ecp.h>

Data Fields

mpi X
mpi Y
mpi Z

Detailed Description

ECP point structure (jacobian coordinates)

Note:
All functions expect and return points satisfying the following condition: Z == 0 or Z == 1. (Other values of Z are used by internal functions only.) The point is zero, or "at infinity", if Z == 0. Otherwise, X and Y are its standard (affine) coordinates.

Definition at line 104 of file ecp.h.


Field Documentation

mpi X

the point's X coordinate

Definition at line 106 of file ecp.h.

mpi Y

the point's Y coordinate

Definition at line 107 of file ecp.h.

mpi Z

the point's Z coordinate

Definition at line 108 of file ecp.h.