forked from dotnet/runtime
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathPbeParametersTests.cs
70 lines (60 loc) · 2.22 KB
/
PbeParametersTests.cs
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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
using Xunit;
namespace System.Security.Cryptography.Tests
{
public static class PbeParametersTests
{
[Theory]
[InlineData(0)]
[InlineData(-1)]
[InlineData(-1000)]
public static void PositiveIterationsRequired(int iterationCount)
{
AssertExtensions.Throws<ArgumentOutOfRangeException>(
nameof(iterationCount),
() => new PbeParameters(PbeEncryptionAlgorithm.Aes128Cbc, HashAlgorithmName.SHA256, iterationCount));
}
[Theory]
[InlineData(0)]
[InlineData(-1)]
[InlineData(19)]
public static void EncryptionAlgorithm_NotVerified(int algId)
{
new PbeParameters((PbeEncryptionAlgorithm)algId, HashAlgorithmName.SHA256, 1);
}
[Theory]
[InlineData("Potato")]
[InlineData("")]
[InlineData(null)]
public static void HashAlgorithm_NotVerified(string algId)
{
HashAlgorithmName hashName = new HashAlgorithmName(algId);
// Assert.NoThrows.
var pbeParams = new PbeParameters(PbeEncryptionAlgorithm.Aes128Cbc, hashName, 1);
Assert.Equal(hashName, pbeParams.HashAlgorithm);
}
[Fact]
public static void HashAlgorithm_NotVerified_DefaultValue()
{
// Assert.NoThrows.
var pbeParams = new PbeParameters(PbeEncryptionAlgorithm.Aes128Cbc, default(HashAlgorithmName), 1);
Assert.Equal(default(HashAlgorithmName), pbeParams.HashAlgorithm);
}
[Theory]
[InlineData("MD5")]
[InlineData("SHA256")]
[InlineData("Potato")]
[InlineData(default)]
public static void Pkcs12_NotVerifed_InCtor(string hashAlgName)
{
HashAlgorithmName hashName = new HashAlgorithmName(hashAlgName);
// Assert.NoThrows.
var pbeParams = new PbeParameters(
PbeEncryptionAlgorithm.TripleDes3KeyPkcs12,
hashName,
1);
Assert.Equal(hashName, pbeParams.HashAlgorithm);
}
}
}