summary refs log tree commit diff
path: root/crypto/src/pqc/crypto/sphincsplus/HarakaS256Digest.cs
blob: 2e22bfea1dfeb97cff85cd673cdbae992b941463 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
using System;

namespace Org.BouncyCastle.Pqc.Crypto.SphincsPlus
{
    internal sealed class HarakaS256Digest
        : HarakaSBase
    {
        public HarakaS256Digest(HarakaSXof harakaSXof)
        {
            haraka256_rc = harakaSXof.haraka256_rc;
        }

        public string AlgorithmName => "HarakaS-256";

        public int GetDigestSize()
        {
            return 32;
        }

        public void BlockUpdate(byte input)
        {
            if (off > 32 - 1)
                throw new ArgumentException("total input cannot be more than 32 bytes");

            buffer[off++] = input;
        }

        public void BlockUpdate(byte[] input, int inOff, int len)
        {
            if (off > 32 - len)
                throw new ArgumentException("total input cannot be more than 32 bytes");

            Array.Copy(input, 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;
        }
    }
}