Uses of Interface
io.ebean.config.EncryptKey
-
Packages that use EncryptKey Package Description io.ebean.config Configuration settings for Database construction -
-
Uses of EncryptKey in io.ebean.config
Methods in io.ebean.config that return EncryptKey Modifier and Type Method Description EncryptKeyEncryptKeyManager. getEncryptKey(String tableName, String columnName)Return the key used to encrypt and decrypt a property mapping to the given table and column.Methods in io.ebean.config with parameters of type EncryptKey Modifier and Type Method Description byte[]Encryptor. decrypt(byte[] data, EncryptKey key)Decrypt the data using the key.StringEncryptor. decryptString(byte[] data, EncryptKey key)Decrypt the data returning a formatted string value using a key.byte[]Encryptor. encrypt(byte[] data, EncryptKey key)Encrypt the data using the key.byte[]Encryptor. encryptString(String formattedValue, EncryptKey key)Encrypt the formatted string value using a key.
-