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

CspProviderFlags.cs « System.Security.Cryptography « corlib « class « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: ca88206941782ce83b8748a93897fb3c3fcea73a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
//
// System.Security.Cryptography CspProviderFlags enumeration
//
// Authors:
//   Thomas Neidhart <tome@sbox.tugraz.at>
//


namespace System.Security.Cryptography {

	/// <summary>
	/// CSP Provider Flags
	/// </summary>
	[Flags]
	public enum CspProviderFlags {
		UseMachineKeyStore = 1,
		UseDefaultKeyContainer,
	}
}