From: Nikos Mavrogiannopoulos Date: Wed, 16 Apr 2003 19:11:29 +0000 (+0000) Subject: The PEM header for certificate requests is now BEGIN NEW CERTIFICATE REQUEST. X-Git-Tag: gnutls_0_9_6~66 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=f4487fdd17f5503ea687281e373b3ea5f6581db1;p=thirdparty%2Fgnutls.git The PEM header for certificate requests is now BEGIN NEW CERTIFICATE REQUEST. --- diff --git a/lib/x509/crq.c b/lib/x509/crq.c index 2721d91c69..4fdb8ed0a8 100644 --- a/lib/x509/crq.c +++ b/lib/x509/crq.c @@ -81,7 +81,7 @@ void gnutls_x509_crq_deinit(gnutls_x509_crq crq) gnutls_free(crq); } -#define PEM_CRQ "CERTIFICATE REQUEST" +#define PEM_CRQ "NEW CERTIFICATE REQUEST" /** * gnutls_x509_crq_import - This function will import a DER or PEM encoded Certificate request @@ -92,7 +92,7 @@ void gnutls_x509_crq_deinit(gnutls_x509_crq crq) * This function will convert the given DER or PEM encoded Certificate * to the native gnutls_x509_crq format. The output will be stored in 'cert'. * - * If the Certificate is PEM encoded it should have a header of "CERTIFICATE REQUEST". + * If the Certificate is PEM encoded it should have a header of "NEW CERTIFICATE REQUEST". * * Returns 0 on success. * @@ -609,7 +609,7 @@ gnutls_datum signature; * GNUTLS_E_SHORT_MEMORY_BUFFER will be returned. * * If the structure is PEM encoded, it will have a header - * of "BEGIN CERTIFICATE REQUEST". + * of "BEGIN NEW CERTIFICATE REQUEST". * * In case of failure a negative value will be returned, and * 0 on success.