コード例 #1
0
  public CMSDigestedData(ContentInfo contentInfo) throws CMSException {
    this.contentInfo = contentInfo;

    try {
      this.digestedData = DigestedData.getInstance(contentInfo.getContent());
    } catch (ClassCastException e) {
      throw new CMSException("Malformed content.", e);
    } catch (IllegalArgumentException e) {
      throw new CMSException("Malformed content.", e);
    }
  }