- Initial commit
This commit is contained in:
44
Runtime/3rdParty/BouncyCastle/crypto/parameters/TweakableBlockCipherParameters.cs
vendored
Normal file
44
Runtime/3rdParty/BouncyCastle/crypto/parameters/TweakableBlockCipherParameters.cs
vendored
Normal file
@ -0,0 +1,44 @@
|
||||
#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
|
||||
{
|
||||
|
||||
/// <summary>
|
||||
/// Parameters for tweakable block ciphers.
|
||||
/// </summary>
|
||||
public class TweakableBlockCipherParameters
|
||||
: ICipherParameters
|
||||
{
|
||||
private readonly byte[] tweak;
|
||||
private readonly KeyParameter key;
|
||||
|
||||
public TweakableBlockCipherParameters(KeyParameter key, byte[] tweak)
|
||||
{
|
||||
this.key = key;
|
||||
this.tweak = Arrays.Clone(tweak);
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Gets the key.
|
||||
/// </summary>
|
||||
/// <value>the key to use, or <code>null</code> to use the current key.</value>
|
||||
public KeyParameter Key
|
||||
{
|
||||
get { return key; }
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Gets the tweak value.
|
||||
/// </summary>
|
||||
/// <value>The tweak to use, or <code>null</code> to use the current tweak.</value>
|
||||
public byte[] Tweak
|
||||
{
|
||||
get { return tweak; }
|
||||
}
|
||||
}
|
||||
}
|
||||
#pragma warning restore
|
||||
#endif
|
||||
Reference in New Issue
Block a user