Welcome to mirror list, hosted at ThFree Co, Russian Federation.

StrongNameKeyPair.cs « System.Reflection « corlib « class « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: cd16be2df68fe70137c3dfb45c612cadc8804127 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
//
// System.Reflection.StrongNameKeyPair.cs
//
// Author:
//   Kevin Winchester (kwin@ns.sympatico.ca)
//
// (C) 2002 Kevin Winchester
//

using System.IO;

namespace System.Reflection {

	[Serializable]
	public class StrongNameKeyPair 
	{		
		private byte[] keyPair;

		public StrongNameKeyPair (byte[] keyPairArray) 
		{
			keyPair = keyPairArray;
		}
		
		public StrongNameKeyPair (FileStream keyPairFile) 
		{
			
		}
		
		public StrongNameKeyPair (string keyPairContainer) 
		{
			
		}
		
		public byte[] PublicKey 
		{
			get { return keyPair; }
		}
	}
}