Package org.keycloak.jose.jws
Class JWSBuilder.EncodingBuilder
- java.lang.Object
- 
- org.keycloak.jose.jws.JWSBuilder.EncodingBuilder
 
- 
- Enclosing class:
- JWSBuilder
 
 public class JWSBuilder.EncodingBuilder extends Object 
- 
- 
Constructor SummaryConstructors Constructor Description EncodingBuilder()
 - 
Method SummaryAll Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description Stringhmac256(byte[] sharedSecret)Deprecated.Stringhmac256(SecretKey sharedSecret)Deprecated.Stringhmac384(byte[] sharedSecret)Deprecated.Stringhmac384(SecretKey sharedSecret)Deprecated.Stringhmac512(byte[] sharedSecret)Deprecated.Stringhmac512(SecretKey sharedSecret)Deprecated.Stringnone()Stringrsa256(PrivateKey privateKey)Deprecated.Stringrsa384(PrivateKey privateKey)Deprecated.Stringrsa512(PrivateKey privateKey)Deprecated.Stringsign(SignatureSignerContext signer)Stringsign(Algorithm algorithm, PrivateKey privateKey)Deprecated.
 
- 
- 
- 
Method Detail- 
signpublic String sign(SignatureSignerContext signer) 
 - 
nonepublic String none() 
 - 
sign@Deprecated public String sign(Algorithm algorithm, PrivateKey privateKey) Deprecated.
 - 
rsa256@Deprecated public String rsa256(PrivateKey privateKey) Deprecated.
 - 
rsa384@Deprecated public String rsa384(PrivateKey privateKey) Deprecated.
 - 
rsa512@Deprecated public String rsa512(PrivateKey privateKey) Deprecated.
 - 
hmac256@Deprecated public String hmac256(byte[] sharedSecret) Deprecated.
 - 
hmac384@Deprecated public String hmac384(byte[] sharedSecret) Deprecated.
 - 
hmac512@Deprecated public String hmac512(byte[] sharedSecret) Deprecated.
 - 
hmac256@Deprecated public String hmac256(SecretKey sharedSecret) Deprecated.
 - 
hmac384@Deprecated public String hmac384(SecretKey sharedSecret) Deprecated.
 - 
hmac512@Deprecated public String hmac512(SecretKey sharedSecret) Deprecated.
 
- 
 
-