Last active
December 22, 2015 20:29
-
-
Save lkdocs/6526712 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<? | |
public function rsa_generate($bits=2048) { | |
$rsa = new Crypt_RSA(); | |
define('CRYPT_RSA_EXPONENT', 65537); | |
$keypair = $rsa->createKey($bits); | |
return $keypair; | |
} | |
?> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment