vote up 1 vote down star

I'm making a simple licensing system for my apps.

I don't know about cryptography, but I know that I need a algorithm that consists of 2 keys: private and public.

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.

Is there a known algorithm that does what I need?

EDIT:Problem solved. Helper class to use dsa avaliable Here

flag

7 Answers

vote up 4 vote down check

Check out RSA. Most modern platforms will have implementations of RSA in their standard library.

link|flag
vote up 0 vote down

Thanks for answers.
I have just finished a helper class to implement the licensing model that roo commented here.
If anyone find it util, it can be dowloaded here.

link|flag
vote up 0 vote down

My answer to this question could be helpful. We use the rsa cipher mentioned to generate the signed licence.

link|flag
Thanks roo. By the way, i made this question after reading your answer. I needed to know the agorithm name. Now i know its rsa. – Gero Sep 17 '08 at 2:25
ha! glad to help :) – roo Sep 17 '08 at 2:59
vote up 4 vote down

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).

To be concrete, the RSA algorithm will do what you want in a secure way.

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.

(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.)

link|flag
vote up 0 vote down

Sounds like you need a library!

I recommend checking out LibTomCrypt

link|flag
vote up -1 vote down

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.

edit: please ignore this I was completely wrong. I'll leave it in for other people who thunk like me to learn from

link|flag
Nope, for signatures you encrypt with private and decrypt with public. – Liudvikas Bukys Sep 17 '08 at 2:05
with PGP it can go either way – Steven A. Lowe Sep 17 '08 at 2:09
With all public/private ciphers you encrypt with the private and decrypt with the public, and visa versa – roo Sep 17 '08 at 2:22
Well ok, you learn something new every day I guess – 1800 INFORMATION Sep 17 '08 at 2:28
vote up 0 vote down

Take a look at this article from codeproject.

link|flag

Your Answer

Get an OpenID
or

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