Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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.

share|improve this question
2  
Does your site store any PII (Personally Identifying Information)? If not, then you're done. Otherwise, this is not a simple question. – John Saunders Oct 1 '09 at 20:45
Excellent question! I am starting to work with clients wanting medical systems written (electronic healthcare is all I am hearing lately) and they (clients) and us (developers) need to see more questions and responses like below! – Electric Automation Apr 10 at 12:44

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.

3 Answers

I work in a hospital, so here's what I can offer: Hipaa protected info is any info that

  1. "[i]s created or received by a health care provider, health plan, public health authority, employer, life insurer, school or university, or health care clearinghouse"; and
  2. "[r]elates to the past, present, or future physical or mental health or condition of an individual; the provision of health care to an individual; or the past, present, or future payment for the provision of health care to an individual."

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:

  • Strong Authorization Protocols - you have to make sure only those who need it can get it
  • Robust Security - self explanitory
  • logs, logs, logs, and more logs. When regulators come knocking, you need to be able to verify every single time you handed out information, what information you handed out, who you handed information out to, and WHY they needed that information to do their job

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.

share|improve this answer
How can you possibly identify "that guy from Boise with the brain tumor"??? Boise has a population of 200,000. They are many guys from Boise with brain tumors, perhaps hundreds. – B Seven Mar 2 '12 at 1:48
2  
+1 for the Spanish Inquisition. – B Seven Mar 2 '12 at 1:49

See "Is Your Web Site HIPAA Compliant?"

HIPAA requires that all protected health related information transmitted over public networks, such as the Internet, remain private and that steps be taken by health care providers to keep this information from being disclosed to the public. Protected health related information includes all clinical information such as medical history, lab results, pharmacy prescriptions, etc. Non-protected information includes items such as procedure costs or billing information. Since practice web sites provide for email correspondence from potential or current patients that may contain protected health information, practice web sites must be HIPAA compliant.

For the practice web site to meet the HIPAA requirements, it must include certain components. First, it should include the federal and state HIPAA guidelines and disclaimers. Second, it should provide the practice privacy notice, which, in turn, should define exactly what comprises protected private information and outline how and when this health information can be released, such as for purposes of billing a health insurance company or to communicate with a diagnostic testing facility (i.e. x-rays, MRIs, CAT scans, etc.). Thirdly, if the practice web site does not include a secure email network, it should provide an email privacy warning statement informing the patient that the email network is not secure and that private health related information should therefore not be sent over the network.

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.

share|improve this answer
1  
It was my understanding that HIPAA was a US Federal law, and thus does not vary from state to state. – John Saunders Oct 1 '09 at 20:47
US Federal laws don't vary from state to state, you're right. They vary from circuit to circuit, and I think there's nine circuits. (A "circuit" here is an area covered by a given Court of Appeals.) A decision by a Circuit Court is a binding precedent in that Circuit, but not in any other. Since laws are subject to interpretation, this means that Federal law is not in fact the same nationwide. It surprised me the first time I learned of it. – David Thornley Oct 1 '09 at 20:51
IANAL, but I'd believe you more readily if you had an example of some aspect of HIPAA that differs from one circuit to another. – John Saunders Oct 1 '09 at 20:56
@John: HIPAA defines some requirements that are left to states to implement. – Joel Coehoorn Oct 1 '09 at 20:58
@Joel: can you give an example or two, and would these requirements determine "compliance" for a web site? – John Saunders Oct 1 '09 at 20:58
show 3 more comments

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.

share|improve this answer