Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
私はsignedCMSを持っていますが、Bouncy Castle APIを使用して署名を削除し、その下のプレーンテキストファイルに明確にアクセスできるようにする方法を知りたいですか?
ありがとう
このようなものが機能する可能性があります:
CMSSignedData signedData = new CMSSignedData(signedFileBytes); // Now get the content contained in the CMS EncapsulatedContentInfo CMSProcessable processable = signedData.getSignedContent();
これで、データを読み取ることができる処理可能なストリームを取得できるようになります。