Cryptography algorithm - Stack Overflow most recent 30 from stackoverflow.com 2009-12-07T03:26:48Z http://stackoverflow.com/feeds/question/79064 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/79064/cryptography-algorithm 1 Cryptography algorithm Gero 2008-09-17T01:48:04Z 2008-09-18T02:26:42Z <p>I'm making a simple licensing system for my apps.</p> <p>I don't know about cryptography, but I know that I need a algorithm that consists of 2 keys: private and public.</p> <p>I need to encrypt some data (expiration date and customer email) using my private key, and then my app will decrypt the data using the public key to compare expiration date.</p> <p>Is there a known algorithm that does what I need?</p> <p>EDIT:Problem solved. Helper class to use dsa avaliable <a href="http://divideyconquer.blogspot.com/2008/09/firma-digital-de-datos-usando-dsa.html" rel="nofollow">Here</a></p> http://stackoverflow.com/questions/79064/cryptography-algorithm/79078#79078 4 Answer by Alvaro Rodriguez for Cryptography algorithm Alvaro Rodriguez 2008-09-17T01:50:25Z 2008-09-17T01:50:25Z <p>Check out <a href="http://en.wikipedia.org/wiki/RSA" rel="nofollow">RSA</a>. Most modern platforms will have implementations of RSA in their standard library.</p> http://stackoverflow.com/questions/79064/cryptography-algorithm/79085#79085 0 Answer by Roger Ween for Cryptography algorithm Roger Ween 2008-09-17T01:51:27Z 2008-09-17T01:51:27Z <p>Take a look at <a href="http://www.codeproject.com/KB/security/xmldsiglic.aspx" rel="nofollow">this</a> article from codeproject.</p> http://stackoverflow.com/questions/79064/cryptography-algorithm/79088#79088 -1 Answer by 1800 INFORMATION for Cryptography algorithm 1800 INFORMATION 2008-09-17T01:51:50Z 2008-09-17T02:28:58Z <p>This isn't how private key encryption is supposed to work at all. You encrypt the data using the public key, it is only able to be decrypted using the private key.</p> <p>edit: please ignore this I was completely wrong. I'll leave it in for other people who thunk like me to learn from</p> http://stackoverflow.com/questions/79064/cryptography-algorithm/79089#79089 0 Answer by Patrick_O for Cryptography algorithm Patrick_O 2008-09-17T01:52:17Z 2008-09-17T01:52:17Z <p>Sounds like you need a library!</p> <p>I recommend checking out LibTomCrypt</p> http://stackoverflow.com/questions/79064/cryptography-algorithm/79123#79123 4 Answer by Thomas for Cryptography algorithm Thomas 2008-09-17T01:55:56Z 2008-09-17T01:55:56Z <p>What you want to do is actually called "signing" in the crypto world. You encrypt something with your private key, but since the public key is public, anyone can decrypt it. The algorithms that do this are called "asymmetric ciphers" (since the encryption key is different than the decryption key).</p> <p>To be concrete, the RSA algorithm will do what you want in a secure way.</p> <p>Do yourself a favour and do not try to implement it yourself; rather, take an existing implementation like the one from the OpenSSL library. It has an Apache-style license so you're probably allowed to use it in your application.</p> <p>(However, note that such a licensing system is never completely secure: somebody can still modify your executable and remove the check. But clearly that is more effort than, say, simply modifying a registry value.)</p> http://stackoverflow.com/questions/79064/cryptography-algorithm/79220#79220 0 Answer by roo for Cryptography algorithm roo 2008-09-17T02:18:44Z 2008-09-17T02:18:44Z <p>My <a href="http://stackoverflow.com/questions/5606/license-models#5752">answer</a> to this <a href="http://stackoverflow.com/questions/5606/license-models">question</a> could be helpful. We use the rsa cipher mentioned to generate the signed licence.</p> http://stackoverflow.com/questions/79064/cryptography-algorithm/89440#89440 0 Answer by Gero for Cryptography algorithm Gero 2008-09-18T02:20:20Z 2008-09-18T02:20:20Z <p>Thanks for answers.<br> I have just finished a helper class to implement the licensing model that <strong>roo</strong> commented <a href="http://stackoverflow.com/questions/5606/license-models#5752">here</a>.<br> If anyone find it util, it can be dowloaded <strong><a href="http://divideyconquer.blogspot.com/2008/09/firma-digital-de-datos-usando-dsa.html" rel="nofollow">here</a></strong>.</p>