AesCtrTest::testPbkdf PHP Метод

testPbkdf() публичный Метод

public testPbkdf ( )
    public function testPbkdf()
    {
        $encrypted = AesCtr::encrypt($this->input, $this->key, 10);
        $this->assertEquals($this->input, AesCtr::decrypt($encrypted, $this->key, 10));
    }