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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
|
using System;
using Org.BouncyCastle.Crypto;
using Org.BouncyCastle.Utilities;
namespace Org.BouncyCastle.Bcpg.OpenPgp
{
internal sealed class EdDsaSigner
: ISigner
{
private readonly ISigner m_signer;
private readonly IDigest m_digest;
private readonly byte[] m_digBuf;
internal EdDsaSigner(ISigner signer, IDigest digest)
{
m_signer = signer;
m_digest = digest;
m_digBuf = new byte[digest.GetDigestSize()];
}
public string AlgorithmName => m_signer.AlgorithmName;
public void Init(bool forSigning, ICipherParameters cipherParameters)
{
m_signer.Init(forSigning, cipherParameters);
m_digest.Reset();
}
public void Update(byte b)
{
m_digest.Update(b);
}
public void BlockUpdate(byte[] input, int inOff, int inLen)
{
m_digest.BlockUpdate(input, inOff, inLen);
}
#if NETCOREAPP2_1_OR_GREATER || NETSTANDARD2_1_OR_GREATER
public void BlockUpdate(ReadOnlySpan<byte> input)
{
m_digest.BlockUpdate(input);
}
#endif
public byte[] GenerateSignature()
{
m_digest.DoFinal(m_digBuf, 0);
m_signer.BlockUpdate(m_digBuf, 0, m_digBuf.Length);
return m_signer.GenerateSignature();
}
public bool VerifySignature(byte[] signature)
{
m_digest.DoFinal(m_digBuf, 0);
m_signer.BlockUpdate(m_digBuf, 0, m_digBuf.Length);
return m_signer.VerifySignature(signature);
}
public void Reset()
{
Arrays.Clear(m_digBuf);
m_signer.Reset();
m_digest.Reset();
}
}
}
|