All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.wxmlabs.aurora.CMSVerifier Maven / Gradle / Ivy

The newest version!
package com.wxmlabs.aurora;

public interface CMSVerifier extends Verifier {
    /**
     * Verify the signature - content with detached signature.
     *
     * @param signedContent the content that was signed.
     * @param sigData       the signature object.
     * @return true if every signer information is verified.
     */
    boolean verify(byte[] signedContent, byte[] sigData);

    /**
     * Verify the signature - with encapsulated content
     *
     * @param sigData the signature object.
     * @return true if every signer information is verified.
     */
    boolean verify(byte[] sigData);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy