Esempio n. 1
0
 public function testEncryptWithoutPadding()
 {
     $this->mcrypt->setKey($this->key);
     $this->mcrypt->setSalt($this->salt);
     $this->setExpectedException('Zend\\Crypt\\Symmetric\\Exception\\InvalidArgumentException', 'You have to specify a padding method');
     $ciphertext = $this->mcrypt->encrypt($this->plaintext);
 }
Esempio n. 2
0
 public function testEncryptWihoutSalt()
 {
     $this->mcrypt->setKey($this->key);
     $this->setExpectedException('Zend\\Crypt\\Symmetric\\Exception\\InvalidArgumentException', 'The salt (IV) cannot be empty');
     $ciphertext = $this->mcrypt->encrypt($this->plaintext);
 }