コード例 #1
0
  /**
   * verify that the given public key successfully handles and confirms the signature associated
   * with this signer
   *
   * @deprecated use verify(ContentVerifierProvider)
   */
  public boolean verify(PublicKey key, Provider sigProvider)
      throws NoSuchAlgorithmException, NoSuchProviderException, CMSException {
    // Optional, but still need to validate if present
    getSigningTime();

    return doVerify(key, sigProvider);
  }