diff options
author | David Hook <dgh@bouncycastle.org> | 2015-10-22 16:06:57 +1100 |
---|---|---|
committer | David Hook <dgh@bouncycastle.org> | 2015-10-22 16:06:57 +1100 |
commit | 15f6e0c1cd9ce96ffbd24dc7dc83a7593df71a8a (patch) | |
tree | 7c39ebf5c01e28fb126b4fcdcfcf1e6901ada7a1 /crypto/src/pkcs/Pkcs10CertificationRequest.cs | |
parent | Merge branch 'master' of bcgit@git.bouncycastle.org:bc-csharp.git (diff) | |
download | BouncyCastle.NET-ed25519-15f6e0c1cd9ce96ffbd24dc7dc83a7593df71a8a.tar.xz |
Changed name of Value() to Collect()
Diffstat (limited to 'crypto/src/pkcs/Pkcs10CertificationRequest.cs')
-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 255f04177..6c6b4c87d 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()).Value()); + sigBits = new DerBitString(((IBlockResult)streamCalculator.GetResult()).Collect()); } // internal Pkcs10CertificationRequest( |