summary refs log tree commit diff
path: root/crypto/src
diff options
context:
space:
mode:
authorKristian Rastrup <kristian@rastrup.net>2019-05-13 10:49:23 +0200
committerGitHub <noreply@github.com>2019-05-13 10:49:23 +0200
commit57e5fa916b9cc641fb8897beb29179be0b518a1e (patch)
tree5bc93c3d74f2221a0115c676f9a2b0ea8a1aaf51 /crypto/src
parentMerge branch 'kakkerlakgly-patch-3' (diff)
downloadBouncyCastle.NET-ed25519-57e5fa916b9cc641fb8897beb29179be0b518a1e.tar.xz
Update PssSigner.cs
Passing through parameter in constructor of PssSigner
Diffstat (limited to 'crypto/src')
-rw-r--r--crypto/src/crypto/signers/PssSigner.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/crypto/src/crypto/signers/PssSigner.cs b/crypto/src/crypto/signers/PssSigner.cs
index 23b7c0f49..e29ed3c45 100644
--- a/crypto/src/crypto/signers/PssSigner.cs
+++ b/crypto/src/crypto/signers/PssSigner.cs
@@ -103,7 +103,7 @@ namespace Org.BouncyCastle.Crypto.Signers
 			IDigest					digest,
 			int						saltLen,
 			byte					trailer)
-			: this(cipher, digest, digest, saltLen, TrailerImplicit)
+			: this(cipher, digest, digest, saltLen, trailer)
 		{
 		}