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

CryptoStreamMode.cs « System.Security.Cryptography « corlib « class « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 6e08107b7d2f0141a2a67e4aaeb1a25f036ed141 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
//
// System.Security.Cryptography CryptoStreamMode enumeration
//
// Authors:
//   Matthew S. Ford (Matthew.S.Ford@Rose-Hulman.Edu)
//
// Copyright 2001 by authors.
//

namespace System.Security.Cryptography {

	/// <summary>
	/// FIXME (the comment): Whether the crypto-stream is in read mode or write mode?
	/// </summary>
	public enum CryptoStreamMode {
		Read,
		Write
	}
}