diff options
author | Peter Dettman <peter.dettman@bouncycastle.org> | 2020-02-20 01:37:07 +0700 |
---|---|---|
committer | Peter Dettman <peter.dettman@bouncycastle.org> | 2020-02-20 01:37:07 +0700 |
commit | 765426a8dc1fe20295f91d55e7bbf539e6b831fc (patch) | |
tree | 8e62ef9b9f45be2030ff490bd09834f2fb4df7a5 /crypto/src/cms/CMSSignedData.cs | |
parent | Mark methods as "Var" for clarity (diff) | |
download | BouncyCastle.NET-ed25519-765426a8dc1fe20295f91d55e7bbf539e6b831fc.tar.xz |
Misc. updates from bc-java
Diffstat (limited to 'crypto/src/cms/CMSSignedData.cs')
-rw-r--r-- | crypto/src/cms/CMSSignedData.cs | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/crypto/src/cms/CMSSignedData.cs b/crypto/src/cms/CMSSignedData.cs index 979be6535..8634b2b3a 100644 --- a/crypto/src/cms/CMSSignedData.cs +++ b/crypto/src/cms/CMSSignedData.cs @@ -280,6 +280,16 @@ namespace Org.BouncyCastle.Cms return contentInfo.GetEncoded(); } + /** + * return the ASN.1 encoded representation of this object using the specified encoding. + * + * @param encoding the ASN.1 encoding format to use ("BER" or "DER"). + */ + public byte[] GetEncoded(string encoding) + { + return contentInfo.GetEncoded(encoding); + } + /** * Replace the signerinformation store associated with this * CmsSignedData object with the new one passed in. You would |