add all
This commit is contained in:
@@ -0,0 +1,43 @@
|
||||
#if !BESTHTTP_DISABLE_ALTERNATE_SSL && (!UNITY_WEBGL || UNITY_EDITOR)
|
||||
#pragma warning disable
|
||||
using System;
|
||||
|
||||
using Best.HTTP.SecureProtocol.Org.BouncyCastle.Utilities;
|
||||
|
||||
namespace Best.HTTP.SecureProtocol.Org.BouncyCastle.Crypto.Parameters
|
||||
{
|
||||
public class ParametersWithID
|
||||
: ICipherParameters
|
||||
{
|
||||
private readonly ICipherParameters m_parameters;
|
||||
private readonly byte[] m_id;
|
||||
|
||||
public ParametersWithID(ICipherParameters parameters, byte[] id)
|
||||
: this(parameters, id, 0, id.Length)
|
||||
{
|
||||
}
|
||||
|
||||
public ParametersWithID(ICipherParameters parameters, byte[] id, int idOff, int idLen)
|
||||
{
|
||||
m_parameters = parameters;
|
||||
m_id = Arrays.CopyOfRange(id, idOff, idOff + idLen);
|
||||
}
|
||||
|
||||
#if NETCOREAPP2_1_OR_GREATER || NETSTANDARD2_1_OR_GREATER || UNITY_2021_2_OR_NEWER
|
||||
public ParametersWithID(ICipherParameters parameters, ReadOnlySpan<byte> id)
|
||||
{
|
||||
m_parameters = parameters;
|
||||
m_id = id.ToArray();
|
||||
}
|
||||
#endif
|
||||
|
||||
public byte[] GetID()
|
||||
{
|
||||
return m_id;
|
||||
}
|
||||
|
||||
public ICipherParameters Parameters => m_parameters;
|
||||
}
|
||||
}
|
||||
#pragma warning restore
|
||||
#endif
|
||||
Reference in New Issue
Block a user