From 1c082f34f33538b06429e9a66f1fa642b26eef99 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20P=C3=A9gouri=C3=A9-Gonnard?= Date: Thu, 12 Jun 2014 22:34:55 +0200 Subject: [PATCH] Update description and references for X.509 files --- library/x509.c | 9 ++++----- library/x509_crl.c | 9 ++++----- library/x509_crt.c | 9 ++++----- library/x509_csr.c | 7 +++---- 4 files changed, 15 insertions(+), 19 deletions(-) diff --git a/library/x509.c b/library/x509.c index 4c54b5b00..17c7a7db0 100644 --- a/library/x509.c +++ b/library/x509.c @@ -1,5 +1,5 @@ /* - * X.509 certificate and private key decoding + * X.509 common functions for parsing and verification * * Copyright (C) 2006-2014, Brainspark B.V. * @@ -25,10 +25,9 @@ /* * The ITU-T X.509 standard defines a certificate format for PKI. * - * http://www.ietf.org/rfc/rfc3279.txt - * http://www.ietf.org/rfc/rfc3280.txt - * - * ftp://ftp.rsasecurity.com/pub/pkcs/ascii/pkcs-1v2.asc + * http://www.ietf.org/rfc/rfc5280.txt (Certificates and CRLs) + * http://www.ietf.org/rfc/rfc3279.txt (Alg IDs for CRLs) + * http://www.ietf.org/rfc/rfc2986.txt (CSRs, aka PKCS#10) * * http://www.itu.int/ITU-T/studygroups/com17/languages/X.680-0207.pdf * http://www.itu.int/ITU-T/studygroups/com17/languages/X.690-0207.pdf diff --git a/library/x509_crl.c b/library/x509_crl.c index 7f8600dbf..7dd53c2f6 100644 --- a/library/x509_crl.c +++ b/library/x509_crl.c @@ -1,5 +1,5 @@ /* - * X.509 certificate and private key decoding + * X.509 Certidicate Revocation List (CRL) parsing * * Copyright (C) 2006-2014, Brainspark B.V. * @@ -25,10 +25,9 @@ /* * The ITU-T X.509 standard defines a certificate format for PKI. * - * http://www.ietf.org/rfc/rfc3279.txt - * http://www.ietf.org/rfc/rfc3280.txt - * - * ftp://ftp.rsasecurity.com/pub/pkcs/ascii/pkcs-1v2.asc + * http://www.ietf.org/rfc/rfc5280.txt (Certificates and CRLs) + * http://www.ietf.org/rfc/rfc3279.txt (Alg IDs for CRLs) + * http://www.ietf.org/rfc/rfc2986.txt (CSRs, aka PKCS#10) * * http://www.itu.int/ITU-T/studygroups/com17/languages/X.680-0207.pdf * http://www.itu.int/ITU-T/studygroups/com17/languages/X.690-0207.pdf diff --git a/library/x509_crt.c b/library/x509_crt.c index 50f92e6ad..c5f7f70ff 100644 --- a/library/x509_crt.c +++ b/library/x509_crt.c @@ -1,5 +1,5 @@ /* - * X.509 certificate and private key decoding + * X.509 certificate parsing and verification * * Copyright (C) 2006-2014, Brainspark B.V. * @@ -25,10 +25,9 @@ /* * The ITU-T X.509 standard defines a certificate format for PKI. * - * http://www.ietf.org/rfc/rfc3279.txt - * http://www.ietf.org/rfc/rfc3280.txt - * - * ftp://ftp.rsasecurity.com/pub/pkcs/ascii/pkcs-1v2.asc + * http://www.ietf.org/rfc/rfc5280.txt (Certificates and CRLs) + * http://www.ietf.org/rfc/rfc3279.txt (Alg IDs for CRLs) + * http://www.ietf.org/rfc/rfc2986.txt (CSRs, aka PKCS#10) * * http://www.itu.int/ITU-T/studygroups/com17/languages/X.680-0207.pdf * http://www.itu.int/ITU-T/studygroups/com17/languages/X.690-0207.pdf diff --git a/library/x509_csr.c b/library/x509_csr.c index f6d268be2..eee6e724e 100644 --- a/library/x509_csr.c +++ b/library/x509_csr.c @@ -25,10 +25,9 @@ /* * The ITU-T X.509 standard defines a certificate format for PKI. * - * http://www.ietf.org/rfc/rfc3279.txt - * http://www.ietf.org/rfc/rfc3280.txt - * - * ftp://ftp.rsasecurity.com/pub/pkcs/ascii/pkcs-1v2.asc + * http://www.ietf.org/rfc/rfc5280.txt (Certificates and CRLs) + * http://www.ietf.org/rfc/rfc3279.txt (Alg IDs for CRLs) + * http://www.ietf.org/rfc/rfc2986.txt (CSRs, aka PKCS#10) * * http://www.itu.int/ITU-T/studygroups/com17/languages/X.680-0207.pdf * http://www.itu.int/ITU-T/studygroups/com17/languages/X.690-0207.pdf