Voting

: max(five, six)?
(Example: nine)

The Note You're Voting On

billnet at tiscalinet dot it
23 years ago
<?php
$fp
=fopen ("/path/to/key.pem","r");
$priv_key=fread ($fp,8192);
fclose($fp);
openssl_get_privatekey ($priv_key);
openssl_private_encrypt($source,$finaltext,$priv_key);
echo
"String crypted: $finaltext";
?>

CIAO !

<< Back to user notes page

To Top