mirror of
https://github.com/danog/tgseclib.git
synced 2024-12-12 09:09:50 +01:00
30260f3321
Conflicts: phpseclib/Crypt/RSA.php
31 lines
727 B
PHP
31 lines
727 B
PHP
<?php
|
|
/**
|
|
* @author Jim Wigginton <terrafrost@php.net>
|
|
* @copyright 2013 Jim Wigginton
|
|
* @license http://www.opensource.org/licenses/mit-license.html MIT License
|
|
*/
|
|
|
|
use phpseclib\Crypt\RSA;
|
|
|
|
class Unit_Crypt_RSA_ModeTest extends PhpseclibTestCase
|
|
{
|
|
public function testEncryptionModeNone()
|
|
{
|
|
$plaintext = 'a';
|
|
|
|
$rsa = new RSA();
|
|
|
|
extract($rsa->createKey());
|
|
$rsa->loadKey($publickey);
|
|
|
|
$rsa->setEncryptionMode(RSA::ENCRYPTION_NONE);
|
|
$a = $rsa->encrypt($plaintext);
|
|
$b = $rsa->encrypt($plaintext);
|
|
|
|
$this->assertEquals($a, $b);
|
|
|
|
$rsa->loadKey($privatekey);
|
|
$this->assertEquals(trim($rsa->decrypt($a), "\0"), $plaintext);
|
|
}
|
|
}
|