Following code in PHP is used to sign data. using private key in pem format.
$key = openssl_pkey_get_private ( "pemprivatekey", '' );
openssl_sign ("string to sign", $signature, $key);
How to convert it into C# .NET ? Which net methods shoudl be used instead of openssl ones ?
Go to the complete details ...