DPAPI is great for protecting sensitive information! Unfortunately, the DPAPI "optional entropy" is basically another piece of sensitive information that must be protected. Ironic.

What are some possible (sneaky) sources of "entropy" I could use that would be difficult to guess? Or alternatively, how could I protect the entropy? Steganography maybe?

FYI: I am not completely relying on the entropy itself. I will have other obstacles and layers of encryption. I just want to put up another obstacle.

Additional FYI: This is just a personal project that I am protecting out of paranoia as well as curiosity.

link|improve this question

feedback

2 Answers

up vote 2 down vote accepted

You can use RMS (Windows Rights Management Services) which is what DRM security schemes use for very similar purposes (they keep the key, which is entropy in your case, hidden from the user but on user's account and computer). RMS again relies on DPAPI but through a system that Microsoft calls lockbox.

link|improve this answer
1  
+1 for interesting – sehe Apr 24 '11 at 22:49
1  
+1 Interesting indeed. I'll have a look. Thanks! – SimpleCoder Apr 24 '11 at 23:01
1  
@Teoman Soygul: Strange, I can't find any links on using this with .Net. Anyway, I know this is the right answer (I'll just have to do some work to implement it), so I've accepted it. Thank you! – SimpleCoder Apr 25 '11 at 20:40
@Teoman, this answer doesn't make sense at all. AD RMS is meant for completely different things such as protecting rights on Office documents, and is also quite complicated to setup. – Can Gencer Apr 27 '11 at 8:22
DRM->RMS->DPAPI (the technique in general is called 'lockbox'ing). Especially 'lockbox' stuff has very little information on it (as to keep it a secret). – Teoman Soygul Apr 27 '11 at 10:14
show 2 more comments
feedback

The entropy used for DPAPI doesn't need to be necessarily sensitive information. It can be a simple salt used to protect against dictionary/rainbow table kind of attacks, alternatively it can be a user entered password if you want extra protection. The DPAPI ensures security through the user credentials, which are used as the key to encrypt the actual keys used. So the entropy could just as well be some random string that is hardcoded into your application. As long as the user credentials are well protected, your data is not at risk.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.