summary refs log tree commit diff
path: root/crypto/src/asn1/cms/KeyAgreeRecipientInfo.cs
diff options
context:
space:
mode:
Diffstat (limited to 'crypto/src/asn1/cms/KeyAgreeRecipientInfo.cs')
-rw-r--r--crypto/src/asn1/cms/KeyAgreeRecipientInfo.cs9
1 files changed, 8 insertions, 1 deletions
diff --git a/crypto/src/asn1/cms/KeyAgreeRecipientInfo.cs b/crypto/src/asn1/cms/KeyAgreeRecipientInfo.cs
index 77f3f3748..63eebcea3 100644
--- a/crypto/src/asn1/cms/KeyAgreeRecipientInfo.cs
+++ b/crypto/src/asn1/cms/KeyAgreeRecipientInfo.cs
@@ -1,3 +1,5 @@
+using System;
+
 using Org.BouncyCastle.Asn1.X509;
 
 namespace Org.BouncyCastle.Asn1.Cms
@@ -11,12 +13,16 @@ namespace Org.BouncyCastle.Asn1.Cms
                 return null;
             if (obj is KeyAgreeRecipientInfo keyAgreeRecipientInfo)
                 return keyAgreeRecipientInfo;
+#pragma warning disable CS0618 // Type or member is obsolete
             return new KeyAgreeRecipientInfo(Asn1Sequence.GetInstance(obj));
+#pragma warning restore CS0618 // Type or member is obsolete
         }
 
         public static KeyAgreeRecipientInfo GetInstance(Asn1TaggedObject obj, bool explicitly)
         {
+#pragma warning disable CS0618 // Type or member is obsolete
             return new KeyAgreeRecipientInfo(Asn1Sequence.GetInstance(obj, explicitly));
+#pragma warning restore CS0618 // Type or member is obsolete
         }
 
         private DerInteger                  version;
@@ -38,7 +44,8 @@ namespace Org.BouncyCastle.Asn1.Cms
             this.recipientEncryptedKeys = recipientEncryptedKeys;
         }
 
-		public KeyAgreeRecipientInfo(Asn1Sequence seq)
+        [Obsolete("Use 'GetInstance' instead")]
+        public KeyAgreeRecipientInfo(Asn1Sequence seq)
         {
             int index = 0;