Ok I got the concept of HIPAA. Thanks to all those who participated. But anybody has real experience on how to setup the website and programming. I am trying to implement this with .NET. Is SSL Certificate enough to ensure the privacy of the information. This is the thing I am going to have webforms that are going to submit this info to the DB, also a document is going to be attached containing the medical history of the patient.
|
closed as off topic by Bill the Lizard♦ Jul 21 '11 at 19:26
Questions on Stack Overflow are expected to relate to programming or software development within the scope defined in the FAQ. Consider editing the question or leaving comments for improvement if you believe the question can be reworded to fit within the scope. Read more about closed questions here.
|
I work in a hospital, so here's what I can offer: Hipaa protected info is any info that
The gist, and the big thing to keep in mind is that the lawmakers were actually smart on this one. HIPAA info involves things like SSN, address, name, insurance number, insurance provider, etc. But what you might not realize is that a lot more than just those can be personally identifying. Saying "that guy from Boise with the brain tumor" is potentially identifiable as well. It provides you with a sex, location, and diagnosis and is pretty easy to tie to a person. Even saying "that person from Phoenix is [going to have to go]/[just went] for chemo" is potentially HIPAA info because it gives you PII. Where you're clear in HIPAA is where you give that info for people who need it to do their job, or where it's free of INDIVIDUAL information. X hospital in phoenix saw Y chemo patients is fine, AFAIK. Either way, when you're dealing with something like HIPAA, you really need to be consulting a lawyer, not a bunch of programmers. Edit in response to your edit: storing HIPAA information is not in and of itself a violation of HIPAA. Hospitals do that all the time. Giving it out to those who do not need it is the violation. If your plan is to store and distribute HIPAA info, then you need several things:
To give an example, in our clinical information program, everyone down to our nurses and doctors are audited on who they pull data on, and what data they pull. If they pull data on any patient who is not one they are directly responsible for, there is a very good chance of the Spanish Inquisition. Again, though, I urge you to consult a lawyer or at the very least have someone to very securely pin blame on so that you can be absolved if a violation does happen. HIPAA does have teeth. |
||||
|
See "Is Your Web Site HIPAA Compliant?"
My advice is find a developer that knows how to make the site compliant since it will vary for each state and it is extremely complex. You should also consult a lawyer, since they know (or able to find out) what HIPAA is and is not. As you can tell from the comments there is some debate. |
|||||||||||||
|
|
Sure. Just don't leak any Protected Health Information to anyone who doesn't have a legitimate need to know it. So if you don't have any patient data, you're already done. If you do have patient data, my advice is hire an expert. The law is written such that you can be held personally liable for fines (not just your company, but you personally) after breaches if you haven't taken appropriate precautions. |
||||
|
|