Skip to content

Commit

Permalink
fix order
Browse files Browse the repository at this point in the history
  • Loading branch information
ww-rm committed Jun 2, 2024
1 parent 7283002 commit bc191d0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion include/gmalglib/sm2curve.h
Original file line number Diff line number Diff line change
Expand Up @@ -46,8 +46,8 @@ extern const UInt256* const SM2_PARAMS_N;
void SM2JacobPointMont_ToPoint(const SM2JacobPointMont* X, SM2Point* Y);
void SM2JacobPointMont_FromPoint(const SM2Point* X, SM2JacobPointMont* Y);

int SM2Point_FromBytes(const uint8_t* bytes, uint64_t bytes_len, SM2Point* X);
uint64_t SM2Point_ToBytes(const SM2Point* X, int pc_mode, uint8_t* bytes);
int SM2Point_FromBytes(const uint8_t* bytes, uint64_t bytes_len, SM2Point* X);
uint64_t SM2JacobPointMont_ToBytes(const SM2JacobPointMont* X, int pc_mode, uint8_t* bytes);
int SM2JacobPointMont_FromBytes(const uint8_t* bytes, uint64_t bytes_len, SM2JacobPointMont* X);

Expand Down

0 comments on commit bc191d0

Please sign in to comment.