com.fitbur.bouncycastle.crypto.params.ISO18033KDFParameters Maven / Gradle / Ivy
package com.fitbur.bouncycastle.crypto.params;
import com.fitbur.bouncycastle.crypto.DerivationParameters;
/**
* parameters for Key com.fitburrivation functions for ISO-18033
*/
public class ISO18033KDFParameters
implements DerivationParameters
{
byte[] seed;
public ISO18033KDFParameters(
byte[] seed)
{
this.seed = seed;
}
public byte[] getSeed()
{
return seed;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy