All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.gatling.recorder.internal.bouncycastle.pqc.crypto.sphincsplus.HarakaS256Digest Maven / Gradle / Ivy

package io.gatling.recorder.internal.bouncycastle.pqc.crypto.sphincsplus;

import io.gatling.recorder.internal.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(); } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy