summary refs log tree commit diff
path: root/Crypto/src/crypto/tls/DigestAlgorithm.cs
blob: cede6b7f849d45cc7ad31027782fb1ce78ddaae2 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
using System;

namespace Org.BouncyCastle.Crypto.Tls
{
	public enum DigestAlgorithm
	{
		/*
		 * Note that the values here are implementation-specific and arbitrary.
		 * It is recommended not to depend on the particular values (e.g. serialization).
		 */
		NULL,
		MD5,
		SHA,

		/*
		 * RFC 5289
		 */
		SHA256,
		SHA384,
	}
}