Package io.jans.as.model.jws
Interface JwsSigner
-
- All Known Implementing Classes:
AbstractJwsSigner
,ECDSASigner
,EDDSASigner
,HMACSigner
,PlainTextSignature
,RSASigner
public interface JwsSigner
- Version:
- February 8, 2019
- Author:
- Javier Rojas Blum
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description SignatureAlgorithm
getSignatureAlgorithm()
Jwt
sign(Jwt jwt)
boolean
validate(Jwt jwt)
-
-
-
Method Detail
-
getSignatureAlgorithm
SignatureAlgorithm getSignatureAlgorithm()
-
sign
Jwt sign(Jwt jwt) throws InvalidJwtException, SignatureException
-
validate
boolean validate(Jwt jwt)
-
-