diff options
author | Peter Dettman <peter.dettman@bouncycastle.org> | 2015-10-18 22:41:35 +0700 |
---|---|---|
committer | Peter Dettman <peter.dettman@bouncycastle.org> | 2015-10-18 22:41:35 +0700 |
commit | c69cad3a921ffbf1ef7debfbfa042f583abab9cb (patch) | |
tree | 681c965a294ee9d096563799decff9b98ee0b34a /crypto/src | |
parent | Update version to 1.8.0-RC.2 (diff) | |
download | BouncyCastle.NET-ed25519-c69cad3a921ffbf1ef7debfbfa042f583abab9cb.tar.xz |
SigOutputStream removed from the other-platform path too.
Diffstat (limited to 'crypto/src')
-rw-r--r-- | crypto/src/cms/CMSSignedDataGenerator.cs | 2 |
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 |