summary refs log tree commit diff
path: root/crypto/src/openpgp
diff options
context:
space:
mode:
authorPeter Dettman <peter.dettman@bouncycastle.org>2022-09-20 15:21:22 +0700
committerPeter Dettman <peter.dettman@bouncycastle.org>2022-09-20 15:21:22 +0700
commitb2499e40d81b1ccac9d311de1a045ba2f275c925 (patch)
tree8e7c79c59bc3e65f3afacd5b9a956054d6889f25 /crypto/src/openpgp
parentGive IStreamCalculator a generic type (diff)
downloadBouncyCastle.NET-ed25519-b2499e40d81b1ccac9d311de1a045ba2f275c925.tar.xz
Cleanup
Diffstat (limited to 'crypto/src/openpgp')
-rw-r--r--crypto/src/openpgp/PgpSignature.cs2
-rw-r--r--crypto/src/openpgp/PgpV3SignatureGenerator.cs3
2 files changed, 1 insertions, 4 deletions
diff --git a/crypto/src/openpgp/PgpSignature.cs b/crypto/src/openpgp/PgpSignature.cs
index aabe964b1..da00d43eb 100644
--- a/crypto/src/openpgp/PgpSignature.cs
+++ b/crypto/src/openpgp/PgpSignature.cs
@@ -1,7 +1,7 @@
 using System;
 using System.IO;
-using Org.BouncyCastle.Asn1;
 
+using Org.BouncyCastle.Asn1;
 using Org.BouncyCastle.Crypto;
 using Org.BouncyCastle.Security;
 using Org.BouncyCastle.Utilities;
diff --git a/crypto/src/openpgp/PgpV3SignatureGenerator.cs b/crypto/src/openpgp/PgpV3SignatureGenerator.cs
index fc8b42df2..c7113e0ae 100644
--- a/crypto/src/openpgp/PgpV3SignatureGenerator.cs
+++ b/crypto/src/openpgp/PgpV3SignatureGenerator.cs
@@ -1,8 +1,5 @@
-using System;
-
 using Org.BouncyCastle.Crypto;
 using Org.BouncyCastle.Crypto.Parameters;
-using Org.BouncyCastle.Math;
 using Org.BouncyCastle.Security;
 using Org.BouncyCastle.Utilities.Date;