summary refs log tree commit diff
diff options
context:
space:
mode:
-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