org.springframework.security.crypto.encrypt
Interface TextEncryptor


public interface TextEncryptor

Service interface for symmetric encryption of text strings.


Method Summary
 String decrypt(String encryptedText)
          Decrypt the encrypted text string.
 String encrypt(String text)
          Encrypt the raw text string.
 

Method Detail

encrypt

String encrypt(String text)
Encrypt the raw text string.


decrypt

String decrypt(String encryptedText)
Decrypt the encrypted text string.