Interface RSAEncryptionConfiguration
-
public interface RSAEncryptionConfiguration- Author:
- Sergio del Amo
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description com.nimbusds.jose.EncryptionMethodgetEncryptionMethod()com.nimbusds.jose.JWEAlgorithmgetJweAlgorithm()java.security.interfaces.RSAPrivateKeygetPrivateKey()java.security.interfaces.RSAPublicKeygetPublicKey()
-
-
-
Method Detail
-
getPublicKey
java.security.interfaces.RSAPublicKey getPublicKey()
- Returns:
- RSA public Key
-
getPrivateKey
java.security.interfaces.RSAPrivateKey getPrivateKey()
- Returns:
- RSA private Key
-
getJweAlgorithm
com.nimbusds.jose.JWEAlgorithm getJweAlgorithm()
- Returns:
- The JWE algorithm
-
getEncryptionMethod
com.nimbusds.jose.EncryptionMethod getEncryptionMethod()
- Returns:
EncryptionMethod
-
-