diff options
author | Peter Dettman <peter.dettman@bouncycastle.org> | 2015-10-17 14:41:20 +0700 |
---|---|---|
committer | Peter Dettman <peter.dettman@bouncycastle.org> | 2015-10-17 14:41:20 +0700 |
commit | d5d6dfaca3be5fca2771e9479c958d48c0c773f8 (patch) | |
tree | 888148afa144caaa0f07828bc5de19826fb2990a | |
parent | Various JPAKE changes to fit existing code conventions (diff) | |
parent | Can't use var keyword in .NET 1.1 (diff) | |
download | BouncyCastle.NET-ed25519-d5d6dfaca3be5fca2771e9479c958d48c0c773f8.tar.xz |
Merge branch 'master' into avanpo-master
-rw-r--r-- | crypto/src/openpgp/PgpKeyRingGenerator.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/crypto/src/openpgp/PgpKeyRingGenerator.cs b/crypto/src/openpgp/PgpKeyRingGenerator.cs index 92ea394a2..efeea9d5b 100644 --- a/crypto/src/openpgp/PgpKeyRingGenerator.cs +++ b/crypto/src/openpgp/PgpKeyRingGenerator.cs @@ -202,7 +202,7 @@ namespace Org.BouncyCastle.Bcpg.OpenPgp { try { - var sGen = new PgpSignatureGenerator(masterKey.PublicKey.Algorithm, hashAlgorithm); + PgpSignatureGenerator sGen = new PgpSignatureGenerator(masterKey.PublicKey.Algorithm, hashAlgorithm); // // Generate the certification |