2004-05-26 Sebastien Pouliot <sebastien@ximian.com>
[mono.git] / mcs / class / corlib / System.Security.Cryptography / AsymmetricKeyExchangeDeformatter.cs
1 //\r
2 // System.Security.Cryptography AsymmetricKeyExchangeDeformatter Class implementation\r
3 //\r
4 // Authors:\r
5 //   Thomas Neidhart (tome@sbox.tugraz.at)\r
6 //
7 // (C) 2004 Novell (http://www.novell.com)
8 //\r
9 \r
10 using System;\r
11 \r
12 namespace System.Security.Cryptography {\r
13         \r
14         public abstract class AsymmetricKeyExchangeDeformatter {\r
15                 \r
16                 public AsymmetricKeyExchangeDeformatter () 
17                 {\r
18                 }\r
19                 \r
20                 public abstract string Parameters {
21                         get;
22                         set;
23                 }\r
24                 \r
25                 public abstract byte[] DecryptKeyExchange (byte[] rgb);\r
26                 \r
27                 public abstract void SetKey (AsymmetricAlgorithm key);\r
28         }\r
29 }\r
30 \r