Skip to content

Commit

Permalink
Change comments.
Browse files Browse the repository at this point in the history
  • Loading branch information
45264 committed Mar 5, 2001
1 parent 3a12ce0 commit d8c79c7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions crypto/ec/ec_lcl.h
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ struct ec_method_st {
int (*add)(const EC_GROUP *, EC_POINT *r, EC_POINT *a, EC_POINT *b);
int (*dbl)(const EC_GROUP *, EC_POINT *r, EC_POINT *a);

/* used by EC_POINT_add, EC_POINT_dbl: */
/* used by EC_POINT_point2oct, EC_POINT_oct2point: */
size_t (*point2oct)(const EC_GROUP *, EC_POINT *, unsigned char *buf,
size_t len, point_conversion_form_t form);
int (*oct2point)(const EC_GROUP *, EC_POINT *, unsigned char *buf, size_t len);
Expand All @@ -88,7 +88,7 @@ struct ec_method_st {

/* 'field_mult' and 'field_sqr' can be used by 'add' and 'dbl' so that
* the same implementations of point operations can be used with different
* implementations of field operations: */
* optimized implementations of expensive field operations: */
int (*field_mult)(const EC_GROUP *, BIGNUM *r, BIGNUM *a, BIGNUM *b);
int (*field_sqr)(const EC_GROUP *, BIGNUM *r, BIGNUM *a);
} /* EC_METHOD */;
Expand Down

0 comments on commit d8c79c7

Please sign in to comment.