summary refs log tree commit diff
path: root/crypto/src/openpgp/EdDsaSigner.cs
diff options
context:
space:
mode:
authorPeter Dettman <peter.dettman@bouncycastle.org>2022-11-09 20:44:47 +0700
committerPeter Dettman <peter.dettman@bouncycastle.org>2022-11-09 20:44:47 +0700
commit42a89ad1a35c36ec80773f8b1fe10db482f5c60c (patch)
treea07630dc6655ea8945a2359744fe95476f305d06 /crypto/src/openpgp/EdDsaSigner.cs
parentAdd GetMaxSignatureSize method (diff)
downloadBouncyCastle.NET-ed25519-42a89ad1a35c36ec80773f8b1fe10db482f5c60c.tar.xz
Add missing file
Diffstat (limited to 'crypto/src/openpgp/EdDsaSigner.cs')
-rw-r--r--crypto/src/openpgp/EdDsaSigner.cs2
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);