summaryrefslogtreecommitdiffstats
path: root/include/crypto/ec.h
diff options
context:
space:
mode:
authorShane Lontis <shane.lontis@oracle.com>2020-03-15 21:34:29 +1000
committerShane Lontis <shane.lontis@oracle.com>2020-03-15 21:34:29 +1000
commitedd3b7a309f8767fc7d8a5c4f7d350b53e144c1b (patch)
treeeb01f9f5db30db92f64ab26731712eb7e64caf54 /include/crypto/ec.h
parent2decdad31d36fdd36e1de3608a8a7a55a873e1f8 (diff)
Add ECDSA to providers
Added ECDSA support for OSSL_SIGNATURE_PARAM_ALGORITHM_ID Reviewed-by: Richard Levitte <levitte@openssl.org> (Merged from https://github.com/openssl/openssl/pull/10968)
Diffstat (limited to 'include/crypto/ec.h')
-rw-r--r--include/crypto/ec.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/crypto/ec.h b/include/crypto/ec.h
index 91540fd856..00b1b25aff 100644
--- a/include/crypto/ec.h
+++ b/include/crypto/ec.h
@@ -14,7 +14,6 @@
# include <openssl/opensslconf.h>
# ifndef OPENSSL_NO_EC
-
# include <openssl/ec.h>
/*-
@@ -56,5 +55,6 @@ int ec_key_pairwise_check(const EC_KEY *eckey, BN_CTX *ctx);
OPENSSL_CTX *ec_key_get_libctx(const EC_KEY *eckey);
const char *ec_curve_nid2name(int nid);
int ec_curve_name2nid(const char *name);
+const unsigned char *ecdsa_algorithmidentifier_encoding(int md_nid, size_t *len);
# endif /* OPENSSL_NO_EC */
#endif