summary refs log tree commit diff
path: root/crypto/src/openpgp/PgpSignatureGenerator.cs
diff options
context:
space:
mode:
authorDavid Hook <dgh@bouncycastle.org>2021-05-23 19:27:59 +1000
committerDavid Hook <dgh@bouncycastle.org>2021-05-23 19:27:59 +1000
commit8ebe171819966753072c65743fd9b1c9e7f090a5 (patch)
treea5a9a3e907a7b5c096b0d59e17a1481140ba718e /crypto/src/openpgp/PgpSignatureGenerator.cs
parentgithub #250 lookup table error (diff)
downloadBouncyCastle.NET-ed25519-8ebe171819966753072c65743fd9b1c9e7f090a5.tar.xz
github #23 added method for handling signing subkey
Diffstat (limited to 'crypto/src/openpgp/PgpSignatureGenerator.cs')
-rw-r--r--crypto/src/openpgp/PgpSignatureGenerator.cs6
1 files changed, 6 insertions, 0 deletions
diff --git a/crypto/src/openpgp/PgpSignatureGenerator.cs b/crypto/src/openpgp/PgpSignatureGenerator.cs
index c5309689f..74dff2570 100644
--- a/crypto/src/openpgp/PgpSignatureGenerator.cs
+++ b/crypto/src/openpgp/PgpSignatureGenerator.cs
@@ -75,6 +75,12 @@ namespace Org.BouncyCastle.Bcpg.OpenPgp
 			lastb = 0;
 		}
 
+		public void InitSign(
+			int sigType,
+			ISignatureWithDigestFactory signer)
+		{
+		}
+
 		public void Update(
             byte b)
         {