Class EncryptionConfig
- java.lang.Object
-
- com.mastercard.developer.encryption.EncryptionConfig
-
- Direct Known Subclasses:
FieldLevelEncryptionConfig,JweConfig
public abstract class EncryptionConfig extends Object
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static classEncryptionConfig.SchemeThe different methods of encryption
-
Constructor Summary
Constructors Modifier Constructor Description protectedEncryptionConfig()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description PrivateKeygetDecryptionKey()CertificategetEncryptionCertificate()PublicKeygetEncryptionKey()StringgetEncryptionKeyFingerprint()IntegergetIVSize()EncryptionConfig.SchemegetScheme()
-
-
-
Method Detail
-
getEncryptionKeyFingerprint
public String getEncryptionKeyFingerprint()
-
getEncryptionCertificate
public Certificate getEncryptionCertificate()
-
getEncryptionKey
public PublicKey getEncryptionKey()
-
getDecryptionKey
public PrivateKey getDecryptionKey()
-
getScheme
public EncryptionConfig.Scheme getScheme()
-
getIVSize
public Integer getIVSize()
-
-