Add prototypes for EC_GROUP_get_curve_{GF2m,GFp}().
authortb <tb@openbsd.org>
Tue, 20 Apr 2021 17:08:08 +0000 (17:08 +0000)
committertb <tb@openbsd.org>
Tue, 20 Apr 2021 17:08:08 +0000 (17:08 +0000)
These will be removed once EC_GROUP_get_curve() is public.

usr.bin/openssl/ecparam.c

index 7bacd37..35b157c 100644 (file)
@@ -1,4 +1,4 @@
-/* $OpenBSD: ecparam.c,v 1.18 2019/07/14 03:30:45 guenther Exp $ */
+/* $OpenBSD: ecparam.c,v 1.19 2021/04/20 17:08:08 tb Exp $ */
 /*
  * Written by Nils Larsch for the OpenSSL project.
  */
 #include <openssl/pem.h>
 #include <openssl/x509.h>
 
+int EC_GROUP_get_curve_GF2m(EC_GROUP *, const BIGNUM *, const BIGNUM *,
+    const BIGNUM *, BN_CTX *);
+int EC_GROUP_get_curve_GFp(EC_GROUP *, const BIGNUM *, const BIGNUM *,
+    const BIGNUM *, BN_CTX *);
+
 static int ecparam_print_var(BIO *, BIGNUM *, const char *, int,
     unsigned char *);