blob: 64672df5416d2c6d1253dc91d256bc820fbedf68 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
using Org.BouncyCastle.Asn1.X509;
namespace Org.BouncyCastle.Asn1.Pkcs
{
// TODO[api] This is not supposed to be a separate type; remove and use AlgorithmIdentifier
public class KeyDerivationFunc
: AlgorithmIdentifier
{
internal KeyDerivationFunc(Asn1Sequence seq)
: base(seq)
{
}
public KeyDerivationFunc(
DerObjectIdentifier id,
Asn1Encodable parameters)
: base(id, parameters)
{
}
}
}
|