22 lines
404 B
C#
22 lines
404 B
C#
using Org.BouncyCastle.Asn1;
|
|
using Org.BouncyCastle.Asn1.X509;
|
|
|
|
namespace Org.BouncyCastle.Asn1.Pkcs
|
|
{
|
|
public class KeyDerivationFunc
|
|
: AlgorithmIdentifier
|
|
{
|
|
internal KeyDerivationFunc(Asn1Sequence seq)
|
|
: base(seq)
|
|
{
|
|
}
|
|
|
|
internal KeyDerivationFunc(
|
|
DerObjectIdentifier id,
|
|
Asn1Encodable parameters)
|
|
: base(id, parameters)
|
|
{
|
|
}
|
|
}
|
|
}
|