Example usage for Java org.springframework.security.crypto.encrypt Encryptors fields, constructors, methods, implement or subclass
The text is from its open source code.
TextEncryptor | noOpText() Creates a text encryptor that performs no encryption. |
TextEncryptor | queryableText(CharSequence password, CharSequence salt) Creates an encryptor for queryable text strings that uses standard password-based encryption. |
BytesEncryptor | stronger(CharSequence password, CharSequence salt) Creates a standard password-based bytes encryptor using 256 bit AES encryption with Galois Counter Mode (GCM). |
TextEncryptor | text(CharSequence password, CharSequence salt) Creates a text encryptor that uses "standard" password-based encryption. |