init commit

This commit is contained in:
2025-10-09 09:57:24 +09:00
commit 4d551bd74f
6636 changed files with 1218703 additions and 0 deletions

View File

@@ -0,0 +1,21 @@
using System;
namespace Org.BouncyCastle.Security.Certificates;
[Serializable]
public class CertificateEncodingException : CertificateException
{
public CertificateEncodingException()
{
}
public CertificateEncodingException(string msg)
: base(msg)
{
}
public CertificateEncodingException(string msg, Exception e)
: base(msg, e)
{
}
}

View File

@@ -0,0 +1,21 @@
using System;
namespace Org.BouncyCastle.Security.Certificates;
[Serializable]
public class CertificateException : GeneralSecurityException
{
public CertificateException()
{
}
public CertificateException(string message)
: base(message)
{
}
public CertificateException(string message, Exception exception)
: base(message, exception)
{
}
}

View File

@@ -0,0 +1,21 @@
using System;
namespace Org.BouncyCastle.Security.Certificates;
[Serializable]
public class CertificateExpiredException : CertificateException
{
public CertificateExpiredException()
{
}
public CertificateExpiredException(string message)
: base(message)
{
}
public CertificateExpiredException(string message, Exception exception)
: base(message, exception)
{
}
}

View File

@@ -0,0 +1,21 @@
using System;
namespace Org.BouncyCastle.Security.Certificates;
[Serializable]
public class CertificateNotYetValidException : CertificateException
{
public CertificateNotYetValidException()
{
}
public CertificateNotYetValidException(string message)
: base(message)
{
}
public CertificateNotYetValidException(string message, Exception exception)
: base(message, exception)
{
}
}

View File

@@ -0,0 +1,21 @@
using System;
namespace Org.BouncyCastle.Security.Certificates;
[Serializable]
public class CertificateParsingException : CertificateException
{
public CertificateParsingException()
{
}
public CertificateParsingException(string message)
: base(message)
{
}
public CertificateParsingException(string message, Exception exception)
: base(message, exception)
{
}
}

View File

@@ -0,0 +1,21 @@
using System;
namespace Org.BouncyCastle.Security.Certificates;
[Serializable]
public class CrlException : GeneralSecurityException
{
public CrlException()
{
}
public CrlException(string msg)
: base(msg)
{
}
public CrlException(string msg, Exception e)
: base(msg, e)
{
}
}