Skip to content

Commit

Permalink
Adapt structures to bind to latest Relic version.
Browse files Browse the repository at this point in the history
  • Loading branch information
Laurent Girod committed May 25, 2020
1 parent bed0034 commit d41470c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions petrelic/_cffi_src/petrelic.h
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@ typedef struct {
/** The third coordinate (projective representation). */
fp_st z;
/** Flag to indicate that this point is normalized. */
int norm;
int coord;
} ep_st;
typedef ep_st ep_t[1];
typedef ep_st g1_st;
Expand All @@ -127,7 +127,7 @@ typedef struct {
/** The third coordinate (projective representation). */
fp2_t z;
/** Flag to indicate that this point is normalized. */
int norm;
int coord;
} ep2_st;
typedef ep2_st ep2_t[1];
typedef ep2_st g2_st;
Expand Down

0 comments on commit d41470c

Please sign in to comment.