use generated private key fro m setUp()
This commit is contained in:
parent
35c91ff901
commit
1e601cd6f1
1 changed files with 2 additions and 4 deletions
|
@ -228,14 +228,12 @@ class Test_Encryption_Crypt extends \PHPUnit_Framework_TestCase {
|
|||
|
||||
function testDecryptPrivateKey() {
|
||||
|
||||
$keypair = Encryption\Crypt::createKeypair();
|
||||
|
||||
// test successful decrypt
|
||||
$crypted = Encryption\Crypt::symmetricEncryptFileContent($keypair['privateKey'], 'hat');
|
||||
$crypted = Encryption\Crypt::symmetricEncryptFileContent($this->genPrivateKey, 'hat');
|
||||
|
||||
$decrypted = Encryption\Crypt::decryptPrivateKey($crypted, 'hat');
|
||||
|
||||
$this->assertEquals($keypair['privateKey'], $decrypted);
|
||||
$this->assertEquals($this->genPrivateKey, $decrypted);
|
||||
|
||||
//test private key decrypt with wrong password
|
||||
$wrongPasswd = Encryption\Crypt::decryptPrivateKey($crypted, 'hat2');
|
||||
|
|
Loading…
Reference in a new issue