Files
SuperVPN/output/Libraries/BouncyCastle.Crypto/Org/BouncyCastle/X509/IX509AttributeCertificate.cs
2025-10-09 09:57:24 +09:00

41 lines
705 B
C#

using System;
using Org.BouncyCastle.Crypto;
using Org.BouncyCastle.Math;
namespace Org.BouncyCastle.X509;
public interface IX509AttributeCertificate : IX509Extension
{
int Version { get; }
BigInteger SerialNumber { get; }
DateTime NotBefore { get; }
DateTime NotAfter { get; }
AttributeCertificateHolder Holder { get; }
AttributeCertificateIssuer Issuer { get; }
bool IsValidNow { get; }
X509Attribute[] GetAttributes();
X509Attribute[] GetAttributes(string oid);
bool[] GetIssuerUniqueID();
bool IsValid(DateTime date);
void CheckValidity();
void CheckValidity(DateTime date);
byte[] GetSignature();
void Verify(AsymmetricKeyParameter publicKey);
byte[] GetEncoded();
}