Cryptography algorithm - Stack Overflow most recent 30 from stackoverflow.com2009-12-07T03:26:48Zhttp://stackoverflow.com/feeds/question/79064http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/79064/cryptography-algorithm1Cryptography algorithmGero2008-09-17T01:48:04Z2008-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#790784Answer by Alvaro Rodriguez for Cryptography algorithmAlvaro Rodriguez2008-09-17T01:50:25Z2008-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#790850Answer by Roger Ween for Cryptography algorithmRoger Ween2008-09-17T01:51:27Z2008-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-1Answer by 1800 INFORMATION for Cryptography algorithm1800 INFORMATION2008-09-17T01:51:50Z2008-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#790890Answer by Patrick_O for Cryptography algorithmPatrick_O2008-09-17T01:52:17Z2008-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#791234Answer by Thomas for Cryptography algorithmThomas2008-09-17T01:55:56Z2008-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#792200Answer by roo for Cryptography algorithmroo2008-09-17T02:18:44Z2008-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#894400Answer by Gero for Cryptography algorithmGero2008-09-18T02:20:20Z2008-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>