Package-level declarations

Types

Link copied to clipboard
@ConfigurationProperties(prefix = "m8ty.encryption")
data class EncryptionSetting(var key: String, var salt: String? = null)
Link copied to clipboard
@Service
@EnableConfigurationProperties(value = [EncryptionSetting::class])
class M8tyEncryptionService(encryptionSetting: EncryptionSetting)

Class that provides encryption and decryption functionalities using M8tyEncryptionUtils.

Link copied to clipboard

Utility class for encryption and decryption.