blob: 31d9ad1f3b4c98896041f079eb7bb3f07c7b2978 (
plain) (
blame)
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
|
using System;
using Org.BouncyCastle.Math;
namespace Org.BouncyCastle.Asn1.Pkcs
{
public class PbeParameter
: Asn1Encodable
{
private readonly Asn1OctetString salt;
private readonly DerInteger iterationCount;
public static PbeParameter GetInstance(object obj)
{
if (obj == null)
return null;
if (obj is PbeParameter pbeParameter)
return pbeParameter;
return new PbeParameter(Asn1Sequence.GetInstance(obj));
}
private PbeParameter(Asn1Sequence seq)
{
if (seq.Count != 2)
throw new ArgumentException("Wrong number of elements in sequence", "seq");
salt = Asn1OctetString.GetInstance(seq[0]);
iterationCount = DerInteger.GetInstance(seq[1]);
}
public PbeParameter(byte[] salt, int iterationCount)
{
this.salt = new DerOctetString(salt);
this.iterationCount = new DerInteger(iterationCount);
}
public byte[] GetSalt()
{
return salt.GetOctets();
}
public BigInteger IterationCount
{
get { return iterationCount.Value; }
}
public override Asn1Object ToAsn1Object()
{
return new DerSequence(salt, iterationCount);
}
}
}
|