diff options
author | David Hook <dgh@bouncycastle.org> | 2015-10-21 10:43:24 +1100 |
---|---|---|
committer | David Hook <dgh@bouncycastle.org> | 2015-10-21 10:43:24 +1100 |
commit | 750fc595961ed2fb325fa56e1918ccb2eff5130e (patch) | |
tree | d63fcb754d0b12cad9faae93fe8c62a2f169b073 /crypto/src/pkcs | |
parent | SigOutputStream removed from the other-platform path too. (diff) | |
download | BouncyCastle.NET-ed25519-750fc595961ed2fb325fa56e1918ccb2eff5130e.tar.xz |
Renamed DoFinal to Value on IBlockResult.
Diffstat (limited to 'crypto/src/pkcs')
-rw-r--r-- | crypto/src/pkcs/Pkcs10CertificationRequest.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/crypto/src/pkcs/Pkcs10CertificationRequest.cs b/crypto/src/pkcs/Pkcs10CertificationRequest.cs index b68979cad..255f04177 100644 --- a/crypto/src/pkcs/Pkcs10CertificationRequest.cs +++ b/crypto/src/pkcs/Pkcs10CertificationRequest.cs @@ -282,7 +282,7 @@ namespace Org.BouncyCastle.Pkcs streamCalculator.Stream.Close(); // Generate Signature. - sigBits = new DerBitString(((IBlockResult)streamCalculator.GetResult()).DoFinal()); + sigBits = new DerBitString(((IBlockResult)streamCalculator.GetResult()).Value()); } // internal Pkcs10CertificationRequest( |