IS there any class for PHP 5.3 that will provide text encrypting/decrypting with RSA without padding?

I've got private and public key, p,q and modulus.

link|improve this question

feedback

2 Answers

up vote 5 down vote accepted

You can use phpseclib, a pure PHP RSA implementation:

<?php
include('Crypt/RSA.php');

$privatekey = file_get_contents('private.key');

$rsa = new Crypt_RSA();
$rsa->loadKey($privatekey);

$plaintext = new Math_BigInteger('aaaaaa');
echo $rsa->_exponentiate($plaintext)->toBytes();
?>
link|improve this answer
feedback
class MyEncryption
{

    public $pubkey = '...public key here...';
    public $privkey = '...private key here...';

    public function encrypt($data)
    {
        if (openssl_public_encrypt($data, $encrypted, $this->pubkey))
            $data = base64_encode($encrypted);
        else
            throw new Exception('Unable to encrypt data. Perhaps it is bigger than the key size?');

        return $data;
    }

    public function decrypt($data)
    {
        if (openssl_private_decrypt(base64_decode($data), $decrypted, $this->privkey))
            $data = $decrypted;
        else
            $data = '';

        return $data;
    }
}
link|improve this answer
I've tried it also but my public key is: (added spaces to avoid website mess) 1091201329673994292788609605089955415282375029027981291234687579372662914925764‌​46330739696001110 6039072308886100726558188253585034290 57592827629436413108566029093628 21263595383668656267584972062078627943109021801768106152175505671082387647644426‌​05581471797071 19674283982419152118103759076030616683978566631413 and it says: error:0906D06c:PEM routines:PEM_read_bio:no start line – mickula Dec 19 '10 at 18:48
It works well at my end u can change this base64 _decode to base32_decode and try. – Pratik Dec 20 '10 at 6:49
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.