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:
40f935f
)
Comments out some unimplemented functions instead of redeclaring them.
author
Geoff Thorpe
<geoff@openssl.org>
Wed, 29 Oct 2003 04:42:29 +0000
(
04:42
+0000)
committer
Geoff Thorpe
<geoff@openssl.org>
Wed, 29 Oct 2003 04:42:29 +0000
(
04:42
+0000)
crypto/ec/ecp_recp.c
patch
|
blob
|
history
diff --git
a/crypto/ec/ecp_recp.c
b/crypto/ec/ecp_recp.c
index e0b28c1cfad0a910bedae5ecbb2f2c27ef8d2173..d454c12fd3b8c6805608cee6b719851c1efc8385 100644
(file)
--- a/
crypto/ec/ecp_recp.c
+++ b/
crypto/ec/ecp_recp.c
@@
-119,7
+119,8
@@
int ec_GFp_recp_group_init(EC_GROUP *group)
return ok;
}
-
+/* Avoid "redundant redeclaration" warnings */
+#if 0
int ec_GFp_recp_group_set_curve(EC_GROUP *group, const BIGNUM *p, const BIGNUM *a, const BIGNUM *b, BN_CTX *ctx);
/* TODO */
@@
-142,3
+143,4
@@
int ec_GFp_recp_field_mul(const EC_GROUP *group, BIGNUM *r, const BIGNUM *a, con
int ec_GFp_recp_field_sqr(const EC_GROUP *group, BIGNUM *r, const BIGNUM *a, BN_CTX *ctx);
/* TODO */
+#endif