Files
ichni_Official/Packages/com.tivadar.best.http/Runtime/3rdParty/BouncyCastle/crypto/parameters/ISO18033KDFParameters.cs
2026-06-15 18:18:16 +08:00

30 lines
550 B
C#

#if !BESTHTTP_DISABLE_ALTERNATE_SSL && (!UNITY_WEBGL || UNITY_EDITOR)
#pragma warning disable
using System;
using Best.HTTP.SecureProtocol.Org.BouncyCastle.Crypto;
namespace Best.HTTP.SecureProtocol.Org.BouncyCastle.Crypto.Parameters
{
/**
* parameters for Key derivation functions for ISO-18033
*/
public class Iso18033KdfParameters
: IDerivationParameters
{
byte[] seed;
public Iso18033KdfParameters(
byte[] seed)
{
this.seed = seed;
}
public byte[] GetSeed()
{
return seed;
}
}
}
#pragma warning restore
#endif