diff options
author | mw <megan@cryptoworkshop.com> | 2020-10-27 16:31:51 +1100 |
---|---|---|
committer | mw <megan@cryptoworkshop.com> | 2020-10-27 16:31:51 +1100 |
commit | b290b56d91ab7ee85198b2be77925fca9f037ac8 (patch) | |
tree | e3b377c06b354a8778d9519e12d93167ee876169 /crypto/src/cms/CMSSignedData.cs | |
parent | Added fractional time and new tests (diff) | |
download | BouncyCastle.NET-ed25519-b290b56d91ab7ee85198b2be77925fca9f037ac8.tar.xz |
Finished NewTspTests
Diffstat (limited to 'crypto/src/cms/CMSSignedData.cs')
-rw-r--r-- | crypto/src/cms/CMSSignedData.cs | 11 |
1 files changed, 8 insertions, 3 deletions
diff --git a/crypto/src/cms/CMSSignedData.cs b/crypto/src/cms/CMSSignedData.cs index 8634b2b3a..6028de709 100644 --- a/crypto/src/cms/CMSSignedData.cs +++ b/crypto/src/cms/CMSSignedData.cs @@ -150,11 +150,16 @@ namespace Org.BouncyCastle.Cms get { return signedData.Version.IntValueExact; } } - /** + internal IX509Store GetCertificates() + { + return Helper.GetCertificates(signedData.Certificates); + } + + /** * return the collection of signers that are associated with the * signatures for the message. */ - public SignerInformationStore GetSignerInfos() + public SignerInformationStore GetSignerInfos() { if (signerInfoStore == null) { @@ -217,7 +222,7 @@ namespace Org.BouncyCastle.Cms string type) { if (certificateStore == null) - { + { certificateStore = Helper.CreateCertificateStore(type, signedData.Certificates); } |