TARGET_J2EE/JVM fixes
[mono.git] / mcs / class / Microsoft.Web.Services / Microsoft.Web.Services.Security / IDecryptionKeyProvider.cs
1 //\r
2 // IDecryptionKeyProvider.cs: \r
3 //      Defines IDecryptionKeyProvider interface\r
4 //\r
5 // Author:\r
6 //      Sebastien Pouliot (spouliot@motus.com)\r
7 //\r
8 // (C) 2002, 2003 Motus Technologies Inc. (http://www.motus.com)\r
9 //\r
10 // Licensed under MIT X11 (see LICENSE) with this specific addition:\r
11 //\r
12 // \93This source code may incorporate intellectual property owned by Microsoft \r
13 // Corporation. Our provision of this source code does not include any licenses\r
14 // or any other rights to you under any Microsoft intellectual property. If you\r
15 // would like a license from Microsoft (e.g. rebrand, redistribute), you need \r
16 // to contact Microsoft directly.\94 \r
17 //\r
18 \r
19 using System.Security.Cryptography.Xml;
20 \r
21 namespace Microsoft.Web.Services.Security {\r
22 \r
23         public interface IDecryptionKeyProvider {\r
24 \r
25                 DecryptionKey GetDecryptionKey (string algorithmUri, KeyInfo keyInfo);\r
26 \r
27         }\r
28 }\r