• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Jeanne Boyarsky
  • Ron McLeod
  • Paul Clapham
  • Liutauras Vilda
Sheriffs:
  • paul wheaton
  • Rob Spoor
  • Devaka Cooray
Saloon Keepers:
  • Stephan van Hulst
  • Tim Holloway
  • Carey Brown
  • Frits Walraven
  • Tim Moores
Bartenders:
  • Mikalai Zaikin

How can I get....

 
Greenhorn
Posts: 12
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi all,
Sir and Madam, Iam developing an application in the middle my boss is saying that we have to use the HIPAA standard in our project...i,e his idea is to implement 128-bit Encryption in the running project...when i went on searching about 128-bit encryption realated concept iam not able to find any suitable concepts in java...So any one please provide me the links are the code snippets to implement the 128-bit encryption in our Java Web Application...Are there any Classes or functios in Java to implement 128-bit Encryption...
Expecting
Thanks in Advance
One and Alll...
 
Rancher
Posts: 4803
7
Mac OS X VI Editor Linux
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator

Originally posted by bujji goud:
Hi all,
Sir and Madam, Iam developing an application in the middle my boss is saying that we have to use the HIPAA standard in our project...i,e his idea is to implement 128-bit Encryption in the running project...when i went on searching about 128-bit encryption realated concept iam not able to find any suitable concepts in java...So any one please provide me the links are the code snippets to implement the 128-bit encryption in our Java Web Application...Are there any Classes or functios in Java to implement 128-bit Encryption...
.



You want to use AES-128, which is built into recent Java versions (at least 5 and 6). Its in the standard crypto classes.

Just implementing "128 bit crypto" is too vague to really address, you need to make sure over the wire stuff is using at least SSL with strong keys.

You really need to address more general topics of security, how folks login, what you use to identify and authenticate users, etc.
 
Pat Farrell
Rancher
Posts: 4803
7
Mac OS X VI Editor Linux
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
BTW, you really should use a real subject line. Your is completely generic and says nothing more than "I have a question"

see Use a meaningful subject
 
With a little knowledge, a cast iron skillet is non-stick and lasts a lifetime.
reply
    Bookmark Topic Watch Topic
  • New Topic