is cryptoapi good? - Stack Overflow most recent 30 from stackoverflow.com2009-12-21T20:02:25Zhttp://stackoverflow.com/feeds/question/905029http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/905029/is-cryptoapi-good2is cryptoapi good?Alie Komoc2009-05-25T01:22:07Z2009-12-19T12:21:49Z
<p>i'm writing a crypto program that does stuff like hashing (sha1), encryption, digital signatues for win32 in c++
is built in cryptoapi secure, or should i use some other library like crypto++
i need maximum security and works on all systems xp and vista (and optionally 2000), but at same time i need to minimize exe size and so don't want uneeded extrernal libs</p>
http://stackoverflow.com/questions/905029/is-cryptoapi-good/905049#9050496Answer by Charlie Martin for is cryptoapi good?Charlie Martin2009-05-25T01:31:48Z2009-05-25T01:31:48Z<p>Define "secure". The built in windows crypto api does what it advertises and doesn't have any flaws that don't get corrected, at least of which I'm aware. The "Crypto Next Generation" API might be worth a look.</p>
<p>Usually, in a secured program, the issue is what people do with the API — insufficient key lengths, leaving keys around in plain text, etc — that really make trouble, not the vendor software.</p>
http://stackoverflow.com/questions/905029/is-cryptoapi-good/905109#9051090Answer by Curt Sampson for is cryptoapi good?Curt Sampson2009-05-25T02:13:13Z2009-05-25T02:13:13Z<p>If you need "maximum" security, you really need to hire an expert to help you. You can end up with an insecure program not only via misuse of the crypto API, as Charlie Martin pointed out, but by correctly using the wrong type of crypto, through misusing the results of the correctly used API, or even insecure design in other parts of your program.</p>
<p>This is an <em>extremely</em> frequent problem in the software industry.</p>
http://stackoverflow.com/questions/905029/is-cryptoapi-good/905122#9051220Answer by Al Gore for is cryptoapi good?Al Gore2009-05-25T02:25:52Z2009-05-25T02:25:52Z<p>"Maximum Security" will be defined by how you use the cryptography API that you choose. It will <strong>not</strong> be defined by the API itself.</p>
<p>As long as the API implements the various cryptographic algorithms correctly, it is just as good as any other cryptographic API.</p>
http://stackoverflow.com/questions/905029/is-cryptoapi-good/905132#9051322Answer by Jeff Moser for is cryptoapi good?Jeff Moser2009-05-25T02:35:23Z2009-05-25T02:41:28Z<p>"Security is a process, not a product." - <a href="http://www.schneier.com/crypto-gram-0005.html" rel="nofollow">Schneier</a> <br/></p>
<p>Cryptographic algorithms like hashing, encryption, and signing are just a part of the process:</p>
<ul>
<li>How are you storing your keys? Can they accidentally be leaked onto disk via the page file?</li>
<li>How do you generate your random numbers? Bad random numbers can really weaken everything. Just ask <a href="http://www.schneier.com/blog/archives/2008/05/random%5Fnumber%5Fb.html" rel="nofollow">Debian</a> or <a href="http://www.cs.berkeley.edu/~daw/papers/ddj-netscape.html" rel="nofollow">Netscape</a> for horror stories.</li>
<li>Can an IT adminstrator(s) update which algorithms are allowed using group policy? </li>
<li>Does the solution support external hardened devices? </li>
<li>Can you do the encryption in kernel mode?</li>
<li>How do updates get distributed in the case of an attack or weakness?</li>
</ul>
<p>CAPI and especially <a href="http://msdn.microsoft.com/en-us/library/aa376210%28VS.85%29.aspx" rel="nofollow">CNG on Vista</a> have thought through these issues and in general are decent. You might want to watch <a href="http://channel9.msdn.com/posts/scobleizer/Tomas-Palmer-and-Tolga-Acar-Crypto-in-Windows-Vista/" rel="nofollow">this video</a> by two guys on the CAPI team to get a feel for who designed it.</p>
<p>And besides, all of this is moot if folks can get physical access to your machine and put in a key logger. </p>
<p>Alas, it's a process...</p>
http://stackoverflow.com/questions/905029/is-cryptoapi-good/905390#9053900Answer by Euro Micelli for is cryptoapi good?Euro Micelli2009-05-25T05:00:29Z2009-05-25T05:00:29Z<p>CryptoAPI is as solid as it gets, when used correctly.</p>
<p>You will find that there are two kinds of outside libraries for crypto for Windows: those that reimplement everything because they are intended to support multi-platform development, and those that act as a simplifying layer on top of CryptoAPI for specific purposes. If you are in the former crowd, by all means use a reputable platform-neutral library. If you find that you can't be productive in raw CryptoAPI, find a reputable library that will do exactly what you need in less steps. But don't assume that another library is going to cure your security risks because it's somehow "better"; just make sure that whatever you use is reputable.</p>
<p>As many other have pointed out, if you truly need "maximum security" (at whatever level your "maximum" happens to be), you might want to hire an expert. Also, you do need to look at security from a holistic angle; encrypting data is just one aspect.</p>
<p>And finally, it should go without saying, don't even <em>dream</em> of writing your own cryptographic library, not even to implementing existing algorithms. You will fail, miserably.</p>
http://stackoverflow.com/questions/905029/is-cryptoapi-good/984028#9840280Answer by Patrick for is cryptoapi good?Patrick2009-06-11T22:10:14Z2009-06-11T22:10:14Z<p>For security choose a library that has fips 140-2 accreditation. After that it's all down to you using it securely.</p>
http://stackoverflow.com/questions/905029/is-cryptoapi-good/1037195#10371951Answer by Vexatus for is cryptoapi good?Vexatus2009-06-24T08:56:26Z2009-06-24T08:56:26Z<p>Crypto API is deprecated, still works in Vista, but you should go with CNG (Crypto APi Next Generation). I'm not sure if Crypto API is still avalible in Windows 7.</p>