From fdc9f763cbb9733cc671e23034bd719df4a14247 Mon Sep 17 00:00:00 2001 From: "Endi S. Dewata" Date: Mon, 7 Jul 2014 16:35:05 -0400 Subject: Fixed transport certificate delimiters. The REST service and client library have been fixed to use the correct delimiters for transport certificate. The REST service was also modified to insert a new line between the header and the certificate data. Ticket #1063 --- base/common/python/pki/__init__.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'base/common/python/pki') diff --git a/base/common/python/pki/__init__.py b/base/common/python/pki/__init__.py index b610a9f8d..6f3aa6253 100644 --- a/base/common/python/pki/__init__.py +++ b/base/common/python/pki/__init__.py @@ -33,8 +33,8 @@ BASE_DIR = '/var/lib' LOG_DIR = '/var/log/pki' PACKAGE_VERSION = SHARE_DIR + '/VERSION' -CERT_HEADER = "-----BEGIN NEW CERTIFICATE REQUEST-----" -CERT_FOOTER = "-----END NEW CERTIFICATE REQUEST-----" +CERT_HEADER = "-----BEGIN CERTIFICATE-----" +CERT_FOOTER = "-----END CERTIFICATE-----" def read_text(message, -- cgit