Add EC_GROUP_new_GFp prototype.
authorBodo Möller <bodo@openssl.org>
Mon, 5 Mar 2001 22:29:57 +0000 (22:29 +0000)
committerBodo Möller <bodo@openssl.org>
Mon, 5 Mar 2001 22:29:57 +0000 (22:29 +0000)
crypto/ec/ec.h

index 8fc79ce8d70846a6edd5970715f267fa4dd48088..9e13530a8b26a456f16b5514402e0553f0c38f97 100644 (file)
@@ -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 *);