A couple points.
1. A agree with the previous posts about binary != text.
2. For things like passwords, you can use a one-way *digest* (
MessageDigest) instead of an encryption because there is usually no need to decrypt passwords -- it's enough to digest what the user types in and then compare it to the original digested password.
3. It's a good idea not to store *just* the password, either encrypted or digested. That is because jim could notice that both he and sally have the same stored value in the password column, therefore he and sally must have the same password! I usually combine the password and username when digesting.