Lines Matching full:ctext
1633 // Return the PKCS#1 RSA decryption of "ctext".
1634 // "ctext" is an even-length hex string and the output is a plain string.
1635 function RSADecrypt(ctext) {
1636 var c = parseBigInt(ctext, 16);
1642 // Return the PKCS#1 RSA decryption of "ctext".
1643 // "ctext" is a Base64-encoded string and the output is a plain string.
1644 //function RSAB64Decrypt(ctext) {
1645 // var h = b64tohex(ctext);