- Initial commit
This commit is contained in:
25
Runtime/3rdParty/BouncyCastle/asn1/pkcs/KeyDerivationFunc.cs
vendored
Normal file
25
Runtime/3rdParty/BouncyCastle/asn1/pkcs/KeyDerivationFunc.cs
vendored
Normal file
@ -0,0 +1,25 @@
|
||||
#if !BESTHTTP_DISABLE_ALTERNATE_SSL && (!UNITY_WEBGL || UNITY_EDITOR)
|
||||
#pragma warning disable
|
||||
using Best.HTTP.SecureProtocol.Org.BouncyCastle.Asn1;
|
||||
using Best.HTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509;
|
||||
|
||||
namespace Best.HTTP.SecureProtocol.Org.BouncyCastle.Asn1.Pkcs
|
||||
{
|
||||
public class KeyDerivationFunc
|
||||
: AlgorithmIdentifier
|
||||
{
|
||||
internal KeyDerivationFunc(Asn1Sequence seq)
|
||||
: base(seq)
|
||||
{
|
||||
}
|
||||
|
||||
public KeyDerivationFunc(
|
||||
DerObjectIdentifier id,
|
||||
Asn1Encodable parameters)
|
||||
: base(id, parameters)
|
||||
{
|
||||
}
|
||||
}
|
||||
}
|
||||
#pragma warning restore
|
||||
#endif
|
||||
Reference in New Issue
Block a user