Security
jqa898.txt
Associated article: How do I Password Encrypt Data?
Tags: Database Security
Published source code accompanying the article by Cliff Berg in which he shows how you can use encryption to protect data at its point of origin or destination. Also see JQA898.ZIP.
Java Q&A
by Cliff Berg
Listing One
private final byte[] salt = {
(byte)0xaa, (byte)0xbb, (byte)0xcc, (byte)0xdd,
(byte)0x22, (byte)0x44, (byte)0xab, (byte)0x12 };
private final int iterations = 10;
Listing Two
protected static Cipher computePBECipher(String ...


