Testing Delegates¶
Base64 Encryption Service Delegate¶
The Base64EncryptionService is a provided EncryptionServiceDelegate implementation that simply Base64 encodes the
plaintext and decodes the Base64 string back to plaintext for decryption. This should only be used for testing purposes
and should never be made available in a production deployment.
There is no keyConfiguration required for Base64EncryptionService.
Identity Encryption Service Delegate¶
The IdentityEncryptionService is a provided EncryptionServiceDelegate implementation that basically does nothing.
It simply stores the plaintext as is and returns the same plaintext for decryption. This should only be used for testing
purposes and should never be made available in a production deployment.
There is no keyConfiguration required for Base64EncryptionService.