EncryptionResult

class EncryptionResult(val encryptedToken: ByteArray, val encryptionExtras: Map<String, String>)

The encryption result when calling TokenEncryptionHandler.encrypt.

Constructors

Link copied to clipboard
constructor(encryptedToken: ByteArray, encryptionExtras: Map<String, String>)

Properties

Link copied to clipboard

Encrypted token as a result of TokenEncryptionHandler.encrypt.

Link copied to clipboard

Encryption primitives as a result of TokenEncryptionHandler.encrypt.

Functions

Link copied to clipboard
operator fun component1(): ByteArray
Link copied to clipboard
operator fun component2(): Map<String, String>