projects
/
oweals
/
openssl.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
d8c79c7
)
Add EC_GROUP_new_GFp prototype.
author
Bodo Möller
<bodo@openssl.org>
Mon, 5 Mar 2001 22:29:57 +0000
(22:29 +0000)
committer
Bodo Möller
<bodo@openssl.org>
Mon, 5 Mar 2001 22:29:57 +0000
(22:29 +0000)
crypto/ec/ec.h
patch
|
blob
|
history
diff --git
a/crypto/ec/ec.h
b/crypto/ec/ec.h
index 8fc79ce8d70846a6edd5970715f267fa4dd48088..9e13530a8b26a456f16b5514402e0553f0c38f97 100644
(file)
--- a/
crypto/ec/ec.h
+++ b/
crypto/ec/ec.h
@@
-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 *);