1 | <?php |
||
9 | class EncryptionTest extends AbstractTestCase |
||
10 | { |
||
11 | /** |
||
12 | * @return array |
||
13 | */ |
||
14 | public function getEncryptionVectors() |
||
20 | |||
21 | /** |
||
22 | * @dataProvider getEncryptionVectors |
||
23 | * @param BufferInterface $password |
||
24 | * @param BufferInterface $salt |
||
25 | * @param int $iterations |
||
26 | * @param BufferInterface $iv |
||
27 | * @param BufferInterface $plaintext |
||
28 | * @param BufferInterface $ciphertext |
||
29 | * @param BufferInterface $tag |
||
30 | * @param BufferInterface $serialized |
||
31 | */ |
||
32 | public function testEncryption(BufferInterface $password, BufferInterface $salt, $iterations, BufferInterface $iv, BufferInterface $plaintext, BufferInterface $ciphertext, BufferInterface $tag, BufferInterface $serialized) |
||
41 | } |
||
42 |
This check looks from parameters that have been defined for a function or method, but which are not used in the method body.