diff options
author | Peter Dettman <peter.dettman@gmail.com> | 2022-06-22 01:40:55 +0700 |
---|---|---|
committer | Peter Dettman <peter.dettman@gmail.com> | 2022-06-22 01:40:55 +0700 |
commit | 892dbe845c98ff3fad3d682aaed3cd40b3161d4f (patch) | |
tree | 785ea8dc92cde60b6c06d5f56f6c3f0cda69bb2c /crypto/src/x509/store | |
parent | Cleanup old build systems (diff) | |
download | BouncyCastle.NET-ed25519-892dbe845c98ff3fad3d682aaed3cd40b3161d4f.tar.xz |
ObsoleteAttribute cleanup
Diffstat (limited to 'crypto/src/x509/store')
-rw-r--r-- | crypto/src/x509/store/X509AttrCertStoreSelector.cs | 7 | ||||
-rw-r--r-- | crypto/src/x509/store/X509CertStoreSelector.cs | 6 |
2 files changed, 0 insertions, 13 deletions
diff --git a/crypto/src/x509/store/X509AttrCertStoreSelector.cs b/crypto/src/x509/store/X509AttrCertStoreSelector.cs index 24255fad2..d60a5f23c 100644 --- a/crypto/src/x509/store/X509AttrCertStoreSelector.cs +++ b/crypto/src/x509/store/X509AttrCertStoreSelector.cs @@ -166,13 +166,6 @@ namespace Org.BouncyCastle.X509.Store set { this.attributeCert = value; } } - [Obsolete("Use AttributeCertificateValid instead")] - public DateTimeObject AttribueCertificateValid - { - get { return attributeCertificateValid; } - set { this.attributeCertificateValid = value; } - } - /// <summary>The criteria for validity</summary> /// <remarks>If <c>null</c> is given any will do.</remarks> public DateTimeObject AttributeCertificateValid diff --git a/crypto/src/x509/store/X509CertStoreSelector.cs b/crypto/src/x509/store/X509CertStoreSelector.cs index 6ab610762..8e22b862a 100644 --- a/crypto/src/x509/store/X509CertStoreSelector.cs +++ b/crypto/src/x509/store/X509CertStoreSelector.cs @@ -142,12 +142,6 @@ namespace Org.BouncyCastle.X509.Store set { subject = value; } } - [Obsolete("Avoid working with X509Name objects in string form")] - public string SubjectAsString - { - get { return subject != null ? subject.ToString() : null; } - } - public byte[] SubjectKeyIdentifier { get { return Arrays.Clone(subjectKeyIdentifier); } |