示例#1
0
 public function testComputeMore()
 {
     $hash = new CHash(CHash::SHA256);
     $hash->computeMore("The quick");
     $hash->computeMore(" brown fox");
     $hash->computeMore(" jumps over");
     $hash->computeMore(" the lazy dog.");
     $this->assertTrue($hash->finalize()->equals("ef537f25c895bfa782526529a9b63d97aa631564d5d789c2b765448c8635fb6c"));
 }