Пример #1
0
 /**
  * @brief test generation of legacy encryption key
  * @depends testLegacyDecryptShort
  */
 function testLegacyCreateKey()
 {
     // Create encrypted key
     $encKey = Encryption\Crypt::legacyCreateKey($this->pass);
     // Decrypt key
     $key = Encryption\Crypt::legacyBlockDecrypt($encKey, $this->pass);
     $this->assertTrue(is_numeric($key));
     // Check that key is correct length
     $this->assertEquals(20, strlen($key));
 }