Package org.pac4j.play.store
Class NoOpDataEncrypter
java.lang.Object
org.pac4j.play.store.NoOpDataEncrypter
- All Implemented Interfaces:
DataEncrypter
A dummy DataEncrypter with no op functions. Used, for example, to generate unencrypted session cookie in `PlayCookieStore`.
- Since:
- 6.1.0
- Author:
- Vidmantas Zemleris
-
Constructor Summary
Constructors -
Method Summary
-
Constructor Details
-
NoOpDataEncrypter
public NoOpDataEncrypter()
-
-
Method Details
-
decrypt
public byte[] decrypt(byte[] encryptedBytes) Description copied from interface:DataEncrypterDecrypt the data.- Specified by:
decryptin interfaceDataEncrypter- Parameters:
encryptedBytes- the encrypted bytes- Returns:
- decrypted bytes
-
encrypt
public byte[] encrypt(byte[] rawBytes) Description copied from interface:DataEncrypterEncrypt the data.- Specified by:
encryptin interfaceDataEncrypter- Parameters:
rawBytes- the raw bytes- Returns:
- encrypted bytes
-