Suitable alternative to CryptEncrypt - Stack Overflow most recent 30 from stackoverflow.com2009-11-24T15:14:56Zhttp://stackoverflow.com/feeds/question/17670http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/17670/suitable-alternative-to-cryptencrypt1Suitable alternative to CryptEncryptgeocoin2008-08-20T09:37:02Z2009-10-30T19:52:07Z
<p>We have a situation in our product where for a long time some data has been stored in the application's database as SQL string (choice of MS SQL server or sybase SQL anywhere) which was encrypted via the Windows API function <a href="http://msdn.microsoft.com/en-us/library/aa379924.aspx" rel="nofollow">CryptEncrypt.</a> (direct and decryptable)</p>
<p>The problem is that CryptEncrypt can produce NULL's in the output, meaning that when it's stored in the database, the string manipulations will at some point truncate the ciphertext.</p>
<p>Ideally we'd like to use an algo that will produce cyphertext that doesn't contain NULLs as that will cause the least amount of change to the existing databases (changing a column from string to binary and code to deal with binary instead of strings) and just decrypt existing data and re-encrypt with the new algo at database upgrade time.</p>
<p>The algorithm doesn't need to be the most secure, as the database is already in a reasonably secure environment (not an open network / teh interwebs) but does need to bebetter than ROT13 (which I can almost decrypt in my head now!)</p>
<p>Cheers</p>
<p>edit: btw, any particular reason for changing ciphertext to cyphertext? ciphertext seems more widely used...</p>
http://stackoverflow.com/questions/17670/suitable-alternative-to-cryptencrypt/17683#176832Answer by OJ for Suitable alternative to CryptEncryptOJ2008-08-20T09:49:56Z2008-08-20T09:49:56Z<p>Any semi-decent algorithm will end up with a strong chance of generating a NULL value somewhere in the resulting ciphertext.</p>
<p>Why not do something like <a href="http://en.wikipedia.org/wiki/Base64" rel="nofollow">base-64 encode</a> your resulting binary blob before persisting to the DB? (<a href="http://synesis.com.au/software/b64.html" rel="nofollow">sample implementation in C++</a>).</p>
http://stackoverflow.com/questions/17670/suitable-alternative-to-cryptencrypt/17699#176990Answer by geocoin for Suitable alternative to CryptEncryptgeocoin2008-08-20T10:06:03Z2008-08-20T10:06:03Z<p>That's an interesting route OJ.
We're looking at the feasability of a non-reversable method (still making sure we don't explicitly retrieve the data to decrypt) e.g. just store a Hash to compare on a submission</p>
http://stackoverflow.com/questions/17670/suitable-alternative-to-cryptencrypt/17720#177202Answer by Greg Hewgill for Suitable alternative to CryptEncryptGreg Hewgill2008-08-20T10:41:15Z2008-08-20T10:41:15Z<p>Storing a hash is a good idea. However, please definitely read Jeff's <a href="http://www.codinghorror.com/blog/archives/000953.html" rel="nofollow">You're Probably Storing Passwords Incorrectly</a>.</p>
http://stackoverflow.com/questions/17670/suitable-alternative-to-cryptencrypt/17750#177500Answer by geocoin for Suitable alternative to CryptEncryptgeocoin2008-08-20T11:16:49Z2008-08-20T11:16:49Z<p>It seems that the developer handling this is going to wrap the existing encryption with <a href="http://www.yenc.org" rel="nofollow">yEnc</a> to preserve the table integrity as the data needs to be retrievable, and this save all that messy mucking about with infinite-improbab.... uhhh changing column types on entrenched installations.
Cheers Guys</p>