java - Decript Jasypt encrypted information -


i encrypting object below entry using spring , hibernate. have salt , password possible decryption information plain text?

<bean id="hibernatestringencryptor"     class="org.jasypt.hibernate.encryptor.hibernatepbestringencryptor">     <property name="registeredname" value="hibernatestringencryptor" />     <property name="password" value="1234" />     <property name="saltgenerator">         <bean class="org.jasypt.salt.fixedstringsaltgenerator">             <property name="salt" value="1" />         </bean>     </property> </bean> 
@entity @table(name = "bride") @typedef(name = "encryptedstring", typeclass = org.jasypt.hibernate.type.encryptedstringtype.class, parameters = { @parameter(name = "encryptorregisteredname", value = "hibernatestringencryptor") })  public class bridedetails {   // ... 

if using md5 encryption no 1 can do, if use given algorithm can....


Comments

Popular posts from this blog

jQuery Mobile app not scrolling in Firefox -

c++ - How to add Crypto++ library to Qt project -

php array slice every 2th rule -