org.bouncycastle.crypto.params.MGFParameters Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of gwt-crypto Show documentation
Show all versions of gwt-crypto Show documentation
A GWT cryptography library ported from Legion of the Bouncy Castle.
The newest version!
package org.bouncycastle.crypto.params;
import org.bouncycastle.crypto.DerivationParameters;
/**
* parameters for mask derivation functions.
*/
public class MGFParameters
implements DerivationParameters
{
byte[] seed;
public MGFParameters(
byte[] seed)
{
this(seed, 0, seed.length);
}
public MGFParameters(
byte[] seed,
int off,
int len)
{
this.seed = new byte[len];
System.arraycopy(seed, off, this.seed, 0, len);
}
public byte[] getSeed()
{
return seed;
}
}