Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/boringssl.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid Benjamin <davidben@google.com>2016-06-16 22:01:10 +0300
committerAdam Langley <agl@google.com>2016-06-16 23:25:39 +0300
commit2f02854c24a05d27fc1eb3f5f2fff13ab1610c9f (patch)
tree8f63c224f17bdd5f1a9948ad86ef681edf46421a /include/openssl/ec.h
parentc5e372e6ef43d9883eadd255d1f987de2addab2e (diff)
Remove EC_GROUP_new_arbitrary.
The Conscrypt revert cycled in long ago. Change-Id: If3cdb211d7347dca88bd70bdc643f80b19a7e528 Reviewed-on: https://boringssl-review.googlesource.com/8306 Reviewed-by: Adam Langley <agl@google.com>
Diffstat (limited to 'include/openssl/ec.h')
-rw-r--r--include/openssl/ec.h9
1 files changed, 0 insertions, 9 deletions
diff --git a/include/openssl/ec.h b/include/openssl/ec.h
index 143aa96c..05218f33 100644
--- a/include/openssl/ec.h
+++ b/include/openssl/ec.h
@@ -315,15 +315,6 @@ OPENSSL_EXPORT int EC_GROUP_set_generator(EC_GROUP *group,
const BIGNUM *order,
const BIGNUM *cofactor);
-/* EC_GROUP_new_arbitrary calls |EC_GROUP_new_curve_GFp| and
- * |EC_GROUP_set_generator|.
- *
- * TODO(davidben): Remove this once
- * https://android-review.googlesource.com/#/c/207990/ has cycled in. */
-OPENSSL_EXPORT EC_GROUP *EC_GROUP_new_arbitrary(
- const BIGNUM *p, const BIGNUM *a, const BIGNUM *b, const BIGNUM *gx,
- const BIGNUM *gy, const BIGNUM *order, const BIGNUM *cofactor);
-
/* EC_GROUP_get_order sets |*order| to the order of |group|, if it's not
* NULL. It returns one on success and zero otherwise. |ctx| is ignored. Use
* |EC_GROUP_get0_order| instead. */