You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

40 lines
850 B

using System;
using Org.BouncyCastle.Utilities;
namespace 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; }
}
}
}