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)
|