diff options
author | Peter Dettman <peter.dettman@bouncycastle.org> | 2013-12-29 11:24:03 +0700 |
---|---|---|
committer | Peter Dettman <peter.dettman@bouncycastle.org> | 2013-12-29 11:24:03 +0700 |
commit | 8d01bdcfcb8be68b6d2aa0f77a17ca6ac046993c (patch) | |
tree | a50e03c1fb1d7e63df0ffa0dc12415e8ee32469b /crypto/src/pkix/Rfc3280CertPathUtilities.cs | |
parent | Use Platform.ToUpperInvariant (diff) | |
download | BouncyCastle.NET-ed25519-8d01bdcfcb8be68b6d2aa0f77a17ca6ac046993c.tar.xz |
Make date format consistent with Java tests
Diffstat (limited to 'crypto/src/pkix/Rfc3280CertPathUtilities.cs')
-rw-r--r-- | crypto/src/pkix/Rfc3280CertPathUtilities.cs | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/crypto/src/pkix/Rfc3280CertPathUtilities.cs b/crypto/src/pkix/Rfc3280CertPathUtilities.cs index bae657d90..c6f3fbff9 100644 --- a/crypto/src/pkix/Rfc3280CertPathUtilities.cs +++ b/crypto/src/pkix/Rfc3280CertPathUtilities.cs @@ -1197,10 +1197,10 @@ namespace Org.BouncyCastle.Pkix } if (certStatus.Status != CertStatus.Unrevoked) { - // TODO This format is forced by the NistCertPath tests - string formattedDate = certStatus.RevocationDate.Value.ToString( - "G", new CultureInfo("en-us")); - string message = "Certificate revocation after " + formattedDate; + // This format is enforced by the NistCertPath tests + string formattedDate = certStatus.RevocationDate.Value.ToString( + "ddd MMM dd HH:mm:ss K yyyy"); + string message = "Certificate revocation after " + formattedDate; message += ", reason: " + CrlReasons[certStatus.Status]; throw new Exception(message); } |