Initial Commit
This commit is contained in:
21
iTechSharp/srcbc/asn1/pkcs/KeyDerivationFunc.cs
Normal file
21
iTechSharp/srcbc/asn1/pkcs/KeyDerivationFunc.cs
Normal file
@@ -0,0 +1,21 @@
|
||||
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)
|
||||
{
|
||||
}
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user