[openssl] master update
Richard Levitte
levitte at openssl.org
Fri Aug 21 13:18:54 UTC 2020
The branch master has been updated
via a02c715c183382aa3038fc4d7d463b17e62a24ff (commit)
from 93ec4f8f09bc1b0e8b478d7b6c07a3bdb537bb75 (commit)
- Log -----------------------------------------------------------------
commit a02c715c183382aa3038fc4d7d463b17e62a24ff
Author: Richard Levitte <levitte at openssl.org>
Date: Thu Aug 20 09:33:01 2020 +0200
Clean away some declarations
dsa_algorithmidentifier_encoding(), ecdsa_algorithmidentifier_encoding(),
rsa_algorithmidentifier_encoding() have been replaced with DER writer
functions, so they aren't useful any more.
Reviewed-by: Paul Dale <paul.dale at oracle.com>
(Merged from https://github.com/openssl/openssl/pull/12693)
-----------------------------------------------------------------------
Summary of changes:
include/crypto/dsa.h | 1 -
include/crypto/ec.h | 1 -
include/crypto/rsa.h | 1 -
3 files changed, 3 deletions(-)
diff --git a/include/crypto/dsa.h b/include/crypto/dsa.h
index 59c94a1740..7fe9f3ad9b 100644
--- a/include/crypto/dsa.h
+++ b/include/crypto/dsa.h
@@ -21,7 +21,6 @@ int dsa_generate_ffc_parameters(DSA *dsa, int type, int pbits, int qbits,
int dsa_sign_int(int type, const unsigned char *dgst,
int dlen, unsigned char *sig, unsigned int *siglen, DSA *dsa);
-const unsigned char *dsa_algorithmidentifier_encoding(int md_nid, size_t *len);
FFC_PARAMS *dsa_get0_params(DSA *dsa);
int dsa_ffc_params_fromdata(DSA *dsa, const OSSL_PARAM params[]);
diff --git a/include/crypto/ec.h b/include/crypto/ec.h
index b6ab033626..9901141bb2 100644
--- a/include/crypto/ec.h
+++ b/include/crypto/ec.h
@@ -57,7 +57,6 @@ OPENSSL_CTX *ec_key_get_libctx(const EC_KEY *eckey);
const char *ec_key_get0_propq(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);
/* Backend support */
int ec_key_fromdata(EC_KEY *ecx, const OSSL_PARAM params[], int include_private);
diff --git a/include/crypto/rsa.h b/include/crypto/rsa.h
index 97cbfa1d7e..478327d231 100644
--- a/include/crypto/rsa.h
+++ b/include/crypto/rsa.h
@@ -87,7 +87,6 @@ int int_rsa_verify(int dtype, const unsigned char *m,
size_t siglen, RSA *rsa);
const unsigned char *rsa_digestinfo_encoding(int md_nid, size_t *len);
-const unsigned char *rsa_algorithmidentifier_encoding(int md_nid, size_t *len);
extern const char *rsa_mp_factor_names[];
extern const char *rsa_mp_exp_names[];
More information about the openssl-commits
mailing list