ILIAS  release_5-3 Revision v5.3.23-19-g915713cf615
APR1_MD5_CheckTest.php
Go to the documentation of this file.
1 <?php
2 
4 
6 
7  public function testHash_WhiteHat101() {
8  $this->assertTrue(
9  APR1_MD5::check('WhiteHat101','$apr1$HIcWIbgX$G9YqNkCVGlFAN63bClpoT/')
10  );
11  }
12 
13  public function testHash_apache() {
14  $this->assertTrue(
15  APR1_MD5::check('apache','$apr1$rOioh4Wh$bVD3DRwksETubcpEH90ww0')
16  );
17  }
18 
19  public function testHash_ChangeMe1() {
20  $this->assertTrue(
21  APR1_MD5::check('ChangeMe1','$apr1$PVWlTz/5$SNkIVyogockgH65nMLn.W1')
22  );
23  }
24 
25 }