Interface HttpSigner
- All Known Implementing Classes:
JoseHttpSigner
public interface HttpSigner
The interface that signature signers must implement.
The sign
method of the
SignatureBase
class requires an instance that implements this
HttpSigner
interface.
- See Also:
-
Method Summary
Modifier and TypeMethodDescriptionbyte[]
sign
(byte[] signatureBase) Sign the signature base (= create a signature).
-
Method Details
-
sign
Sign the signature base (= create a signature).- Parameters:
signatureBase
- The signature base to be signed.- Returns:
- The resulting signature.
- Throws:
SignatureException
- An error occurred during the signing process.
-