forked from DotNetOpenAuth/DotNetOpenAuth
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathConfidenceFactor.cs
More file actions
44 lines (41 loc) · 1.07 KB
/
ConfidenceFactor.cs
File metadata and controls
44 lines (41 loc) · 1.07 KB
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
40
41
42
43
44
// <auto-generated/>
//
// Mono.Math.Prime.ConfidenceFactor.cs - Confidence factor for prime generation
//
// Authors:
// Ben Maurer
//
// Copyright (c) 2003 Ben Maurer. All rights reserved
//
using System;
namespace Mono.Math.Prime {
/// <summary>
/// A factor of confidence.
/// </summary>
internal enum ConfidenceFactor {
/// <summary>
/// Only suitable for development use, probability of failure may be greater than 1/2^20.
/// </summary>
ExtraLow,
/// <summary>
/// Suitable only for transactions which do not require forward secrecy. Probability of failure about 1/2^40
/// </summary>
Low,
/// <summary>
/// Designed for production use. Probability of failure about 1/2^80.
/// </summary>
Medium,
/// <summary>
/// Suitable for sensitive data. Probability of failure about 1/2^160.
/// </summary>
High,
/// <summary>
/// Use only if you have lots of time! Probability of failure about 1/2^320.
/// </summary>
ExtraHigh,
/// <summary>
/// Only use methods which generate provable primes. Not yet implemented.
/// </summary>
Provable
}
}