markus / MarkusAutoUpdate / src / NetSparkle / Enums / ValidationResult.cs @ 57ae0756
이력 | 보기 | 이력해설 | 다운로드 (741 Bytes)
1 |
namespace NetSparkleUpdater.Enums |
---|---|
2 |
{ |
3 |
/// <summary> |
4 |
/// Return value of the DSA verification check functions. |
5 |
/// </summary> |
6 |
public enum ValidationResult |
7 |
{ |
8 |
/// <summary> |
9 |
/// The DSA public key and signature exists and they are valid. |
10 |
/// </summary> |
11 |
Valid = 1, |
12 |
|
13 |
/// <summary> |
14 |
/// Depending on the SecurityMode at least one of DSA public key or the signature dosn't exist or |
15 |
/// they exists but they are not valid. In this case the file will be rejected. |
16 |
/// </summary> |
17 |
Invalid = 2, |
18 |
|
19 |
/// <summary> |
20 |
/// There wasn't any DSA public key or signature and SecurityMode said this is okay. |
21 |
/// </summary> |
22 |
Unchecked = 3, |
23 |
} |
24 |
} |