summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRichard J. Moore <rich@kde.org>2016-07-30 18:36:16 +0100
committerRich Salz <rsalz@openssl.org>2016-07-30 15:19:24 -0400
commit22293ea1cc3c6b8eef16d75b7a63242c8b3375c5 (patch)
tree46743e5ef9f286996fc3bbdfd76f1b94cf85aede
parent1421aeadd757e0c564314ba62521979d08884ccc (diff)
Ignore the serial number for now and just do the rest.
Reviewed-by: Stephen Henson <steve@openssl.org> Reviewed-by: Rich Salz <rsalz@openssl.org> (Merged from https://github.com/openssl/openssl/pull/1367)
-rw-r--r--apps/ca.c6
-rw-r--r--crypto/ocsp/ocsp_lib.c4
-rw-r--r--crypto/x509/x509_cmp.c2
-rw-r--r--include/openssl/ocsp.h2
-rw-r--r--include/openssl/x509.h2
5 files changed, 8 insertions, 8 deletions
diff --git a/apps/ca.c b/apps/ca.c
index 3cad05d68d..376c8a553b 100644
--- a/apps/ca.c
+++ b/apps/ca.c
@@ -980,14 +980,14 @@ end_of_options:
if (verbose)
BIO_printf(bio_err, "writing new certificates\n");
for (i = 0; i < sk_X509_num(cert_sk); i++) {
- const ASN1_INTEGER *serialNumber = X509_get_serialNumber(x);
+ ASN1_INTEGER *serialNumber = X509_get_serialNumber(x);
int k;
char *n;
x = sk_X509_value(cert_sk, i);
j = ASN1_STRING_length(serialNumber);
- p = (const char *)ASN1_STRING_data((ASN1_INTEGER *)serialNumber);
+ p = (const char *)ASN1_STRING_data(serialNumber);
if (strlen(outdir) >= (size_t)(j ? BSIZE - j * 2 - 6 : BSIZE - 8)) {
BIO_printf(bio_err, "certificate file name too long\n");
@@ -1685,7 +1685,7 @@ static int do_body(X509 **xret, EVP_PKEY *pkey, X509 *x509,
goto end;
#endif
- if (BN_to_ASN1_INTEGER(serial, (ASN1_INTEGER *)X509_get_serialNumber(ret)) == NULL)
+ if (BN_to_ASN1_INTEGER(serial, X509_get_serialNumber(ret)) == NULL)
goto end;
if (selfsign) {
if (!X509_set_issuer_name(ret, subject))
diff --git a/crypto/ocsp/ocsp_lib.c b/crypto/ocsp/ocsp_lib.c
index e850b4c01c..5ff2f318b3 100644
--- a/crypto/ocsp/ocsp_lib.c
+++ b/crypto/ocsp/ocsp_lib.c
@@ -22,7 +22,7 @@
OCSP_CERTID *OCSP_cert_to_id(const EVP_MD *dgst, X509 *subject, X509 *issuer)
{
X509_NAME *iname;
- const ASN1_INTEGER *serial;
+ ASN1_INTEGER *serial;
ASN1_BIT_STRING *ikey;
if (!dgst)
dgst = EVP_sha1();
@@ -40,7 +40,7 @@ OCSP_CERTID *OCSP_cert_to_id(const EVP_MD *dgst, X509 *subject, X509 *issuer)
OCSP_CERTID *OCSP_cert_id_new(const EVP_MD *dgst,
X509_NAME *issuerName,
ASN1_BIT_STRING *issuerKey,
- const ASN1_INTEGER *serialNumber)
+ ASN1_INTEGER *serialNumber)
{
int nid;
unsigned int i;
diff --git a/crypto/x509/x509_cmp.c b/crypto/x509/x509_cmp.c
index dffc8e241b..a33fd4779d 100644
--- a/crypto/x509/x509_cmp.c
+++ b/crypto/x509/x509_cmp.c
@@ -102,7 +102,7 @@ X509_NAME *X509_get_subject_name(const X509 *a)
return (a->cert_info.subject);
}
-const ASN1_INTEGER *X509_get_serialNumber(const X509 *a)
+ASN1_INTEGER *X509_get_serialNumber(X509 *a)
{
return &a->cert_info.serialNumber;
}
diff --git a/include/openssl/ocsp.h b/include/openssl/ocsp.h
index ecf3a2d765..a468a5233e 100644
--- a/include/openssl/ocsp.h
+++ b/include/openssl/ocsp.h
@@ -187,7 +187,7 @@ OCSP_CERTID *OCSP_cert_to_id(const EVP_MD *dgst, X509 *subject, X509 *issuer);
OCSP_CERTID *OCSP_cert_id_new(const EVP_MD *dgst,
X509_NAME *issuerName,
ASN1_BIT_STRING *issuerKey,
- const ASN1_INTEGER *serialNumber);
+ ASN1_INTEGER *serialNumber);
OCSP_ONEREQ *OCSP_request_add0_id(OCSP_REQUEST *req, OCSP_CERTID *cid);
diff --git a/include/openssl/x509.h b/include/openssl/x509.h
index c2623f6df6..e68d4b366c 100644
--- a/include/openssl/x509.h
+++ b/include/openssl/x509.h
@@ -612,7 +612,7 @@ int ASN1_item_sign_ctx(const ASN1_ITEM *it, X509_ALGOR *algor1,
long X509_get_version(const X509 *x);
int X509_set_version(X509 *x, long version);
int X509_set_serialNumber(X509 *x, ASN1_INTEGER *serial);
-const ASN1_INTEGER *X509_get_serialNumber(const X509 *x);
+ASN1_INTEGER *X509_get_serialNumber(X509 *x);
int X509_set_issuer_name(X509 *x, X509_NAME *name);
X509_NAME *X509_get_issuer_name(const X509 *a);
int X509_set_subject_name(X509 *x, X509_NAME *name);