summary refs log tree commit diff
diff options
context:
space:
mode:
authorPeter Dettman <peter.dettman@bouncycastle.org>2015-10-18 22:41:35 +0700
committerPeter Dettman <peter.dettman@bouncycastle.org>2015-10-18 22:41:35 +0700
commitc69cad3a921ffbf1ef7debfbfa042f583abab9cb (patch)
tree681c965a294ee9d096563799decff9b98ee0b34a
parentUpdate version to 1.8.0-RC.2 (diff)
downloadBouncyCastle.NET-ed25519-c69cad3a921ffbf1ef7debfbfa042f583abab9cb.tar.xz
SigOutputStream removed from the other-platform path too.
-rw-r--r--crypto/src/cms/CMSSignedDataGenerator.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/crypto/src/cms/CMSSignedDataGenerator.cs b/crypto/src/cms/CMSSignedDataGenerator.cs
index 07ee1a8d8..e0caca9ff 100644
--- a/crypto/src/cms/CMSSignedDataGenerator.cs
+++ b/crypto/src/cms/CMSSignedDataGenerator.cs
@@ -137,7 +137,7 @@ namespace Org.BouncyCastle.Cms
                 IStreamCalculator calculator = sigCalc.CreateCalculator();
 
 #if NETCF_1_0 || NETCF_2_0 || SILVERLIGHT || PORTABLE
-				Stream sigStr = new SigOutputStream(calculator.Stream);
+				Stream sigStr = calculator.Stream;
 #else
 				Stream sigStr = new BufferedStream(calculator.Stream);
 #endif