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

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

There is a newer version: 7.0.0.Alpha4
Show 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 - 2025 Weber Informatics LLC | Privacy Policy