Encryption

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • NamelessNumberheadMan
    New Member
    • Jul 2007
    • 15

    Encryption

    I'm developing a web app, and have some data that needs to be encrypted. I was hoping to find some sort of package of framework that I could easily integerate with hibernate. Does anyone have any ideas?
  • BigDaddyLH
    Recognized Expert Top Contributor
    • Dec 2007
    • 1216

    #2
    Originally posted by NamelessNumberh eadMan
    I'm developing a web app, and have some data that needs to be encrypted. I was hoping to find some sort of package of framework that I could easily integerate with hibernate. Does anyone have any ideas?
    The standard Java encryption interface is JCE: http://java.sun.com/j2se/1.4.2/docs/...ERefGuide.html

    On the other hand, many DBMSs support encryption/decryption transparently. I know Oracle does.

    Comment

    Working...