Skip to content

Commit

Permalink
Add EC_GROUP_new_GFp prototype.
Browse files Browse the repository at this point in the history
  • Loading branch information
45264 committed Mar 5, 2001
1 parent d8c79c7 commit 24b8dc9
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions crypto/ec/ec.h
Original file line number Diff line number Diff line change
Expand Up @@ -104,6 +104,11 @@ EC_GROUP *EC_GROUP_new(const EC_METHOD *);
int EC_GROUP_set_GFp(EC_GROUP *, const BIGNUM *p, const BIGNUM *a, const BIGNUM *b);
void EC_GROUP_free(EC_GROUP *);

/* EC_GROUP_new_GFp() calls EC_GROUP_new() and EC_GROUP_set_GFp()
* after choosing an appropriate EC_METHOD */
EC_GROUP *EC_GROUP_new_GFp(const BIGNUM *p, const BIGNUM *a, const BIGNUM *b);


EC_POINT *EC_POINT_new(const EC_GROUP *);
void EC_POINT_free(EC_POINT *);

Expand Down

0 comments on commit 24b8dc9

Please sign in to comment.