diff options
author | David Hook <dgh@bouncycastle.org> | 2015-10-21 22:04:06 +1100 |
---|---|---|
committer | David Hook <dgh@bouncycastle.org> | 2015-10-21 22:04:06 +1100 |
commit | e41a52b8f6ffba2a53b342cca3ce11a313f4027b (patch) | |
tree | 2a5cd00de7001967afe3f7f6a7a3963e895d72a5 /crypto/src/cms | |
parent | Renamed DoFinal to Value on IBlockResult. (diff) | |
download | BouncyCastle.NET-ed25519-e41a52b8f6ffba2a53b342cca3ce11a313f4027b.tar.xz |
Added missed files on IBlockResult change
Diffstat (limited to 'crypto/src/cms')
-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 e0caca9ff..789aa9145 100644 --- a/crypto/src/cms/CMSSignedDataGenerator.cs +++ b/crypto/src/cms/CMSSignedDataGenerator.cs @@ -174,7 +174,7 @@ namespace Org.BouncyCastle.Cms } sigStr.Close(); - byte[] sigBytes = ((IBlockResult)calculator.GetResult()).DoFinal(); + byte[] sigBytes = ((IBlockResult)calculator.GetResult()).Value(); Asn1Set unsignedAttr = null; if (unsAttr != null) |