diff options
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); } |