简体   繁体   中英

How to use Bouncy Castle to remove a signature from a CMS?

I have a signedCMS, and would like to know how to use Bouncy Castle API to remove the signature so I can have clear access to the plain text file underneath?

Thanks

Something like this might work:

CMSSignedData signedData = new CMSSignedData(signedFileBytes);

// Now get the content contained in the CMS EncapsulatedContentInfo
CMSProcessable processable = signedData.getSignedContent();    

You should then be able to get a stream on processable from which the data can be read.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM