diff options
author | Peter Dettman <peter.dettman@bouncycastle.org> | 2022-11-09 20:44:47 +0700 |
---|---|---|
committer | Peter Dettman <peter.dettman@bouncycastle.org> | 2022-11-09 20:44:47 +0700 |
commit | 42a89ad1a35c36ec80773f8b1fe10db482f5c60c (patch) | |
tree | a07630dc6655ea8945a2359744fe95476f305d06 | |
parent | Add GetMaxSignatureSize method (diff) | |
download | BouncyCastle.NET-ed25519-42a89ad1a35c36ec80773f8b1fe10db482f5c60c.tar.xz |
Add missing file
-rw-r--r-- | crypto/src/openpgp/EdDsaSigner.cs | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/crypto/src/openpgp/EdDsaSigner.cs b/crypto/src/openpgp/EdDsaSigner.cs index 0e15ac609..c9396160d 100644 --- a/crypto/src/openpgp/EdDsaSigner.cs +++ b/crypto/src/openpgp/EdDsaSigner.cs @@ -44,6 +44,8 @@ namespace Org.BouncyCastle.Bcpg.OpenPgp } #endif + public int GetMaxSignatureSize() => m_signer.GetMaxSignatureSize(); + public byte[] GenerateSignature() { m_digest.DoFinal(m_digBuf, 0); |