@SuppressWarnings("rawtypes")
@Override
protected EncryptedType convertFromString(final String s, final Class toClass) {
Crypter crypter = this.crypter;
byte[] bytes = s.getBytes();
byte[] enc = crypter.decrypt(bytes);
String text = new String(enc);
return this.wrap(text);
}
@Override