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

DeriveBytes.cs « System.Security.Cryptography « corlib « class « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 048c4182cd78a8aea3e86f2314ac03f1b8765c4e (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
//
// System.Security.Cryptography DeriveBytes.cs
//
// Author:
//   Thomas Neidhart (tome@sbox.tugraz.at)
//

using System;

namespace System.Security.Cryptography
{

	/// <summary>
	/// Abstract base class for all classes that derive byte information from an integer
	/// </summary>
	public abstract class DeriveBytes
	{
	
		protected DeriveBytes() {}
		
		public abstract byte[] GetBytes(int cb);

		public abstract void Reset();
		
	} // DeriveBytes
	
} // System.Security.Cryptography