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

org.jboss.resteasy.crypto.SignatureSignerContext Maven / Gradle / Ivy

The newest version!
package org.jboss.resteasy.crypto;

import java.security.SignatureException;

public interface SignatureSignerContext {
    String getKid();

    String getAlgorithm();

    String getHashAlgorithm();

    byte[] sign(byte[] data) throws SignatureException;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy