}
public byte[] getContent(final byte[] data) {
try {
CMSSignedData signedData = new CMSSignedData(data);
CMSProcessable processable = signedData.getSignedContent();
return this.getContent(processable);
} catch (Exception e) {
throw new SignerException(e);
}
}