org.bouncycastle.pqc.crypto.sphincsplus.HarakaS256Digest Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of bcprov-jdk14 Show documentation
Show all versions of bcprov-jdk14 Show documentation
The Bouncy Castle Crypto package is a Java implementation of cryptographic algorithms. This jar contains JCE provider and lightweight API for the Bouncy Castle Cryptography APIs for JDK 1.4.
package org.bouncycastle.pqc.crypto.sphincsplus;
import org.bouncycastle.crypto.Digest;
/**
* Haraka-512 v2, https://eprint.iacr.org/2016/098.pdf
*
* Haraka512-256 with reference to Python Reference Impl from: https://github.com/sphincs/sphincsplus
*
*/
class HarakaS256Digest
extends HarakaSBase
implements Digest
{
public HarakaS256Digest(HarakaSXof base)
{
haraka256_rc = base.haraka256_rc;
}
public String getAlgorithmName()
{
return "HarakaS-256";
}
public int getDigestSize()
{
return 32;
}
public void update(byte in)
{
if (off > 32 - 1)
{
throw new IllegalArgumentException("total input cannot be more than 32 bytes");
}
buffer[off++] = in;
}
public void update(byte[] in, int inOff, int len)
{
if (off > 32 - len)
{
throw new IllegalArgumentException("total input cannot be more than 32 bytes");
}
System.arraycopy(in, inOff, buffer, off, len);
off += len;
}
public int doFinal(byte[] output, int outOff)
{
// TODO Check received all 32 bytes of input?
byte[] s = new byte[32];
haraka256Perm(s);
xor(s, 0, buffer, 0, output, outOff, 32);
reset();
return output.length;
}
public void reset()
{
super.reset();
}
}