This week's book giveaway is in the Agile and other Processes forum. We're giving away four copies of The Mikado Method and have Ola Ellnestam and Daniel Brolund on-line! See this thread for details.
Encrypted password containing carraige return character not getting saved in database
RAGHAVA KUMAR
Greenhorn
Joined: Jul 27, 2007
Posts: 4
posted
0
Hi,
While iam applying Exclusive-OR on two different strings(encryption),I am getting carraige return character in the resultant string. It is not getting saved properly in the database. Can you please suggest how to identify the carraige return character in the string and replacing with some other character so that it will be saved properly in the database.
Ulf Dittmer
Marshal
Joined: Mar 22, 2005
Posts: 35249
7
posted
0
If a String is encrypted it is no longer character data - it becomes binary data. So you can no longer store it in a String, or work on it using String's methods, or store it in a varchar field in a DB.
The easiest solution would probably be to generate an ASCII representation of the data using something like base-64. The Apache Commons Codec library has methods to encode and decode base-64.