I’m going to implement license key generator on my website but I’ve very few knowledges of php!
In my (Cocoa) application I’ve integrate a system verification that use the RSA_sign function (in C#) … I would like to use the paypal IPN notification system to automatically generate and send to my users their license keys … but I really don’t know how to sign a string in php using an RSA key!!! In php I know only the openss_sign function but it isn’t the same thing!
Or is better and easiest to use a DSA signing method???
Please, help!
Thanks in advance for all the replies!!!
You want openssl_sign().
EDIT: