Voting

: min(five, one)?
(Example: nine)

The Note You're Voting On

lonewolf at greyskydesigns dot com
22 years ago
Easy way:

<?php

$publicKey
= "file://path/to/public/key-crt.pem";
$plaintext = "String to encrypt";

openssl_public_encrypt($plaintext, $encrypted, $publicKey);

echo
$encrypted; //encrypted string

?>

<< Back to user notes page

To Top