Skip to content

Instantly share code, notes, and snippets.

@phalcon
Created January 7, 2013 23:21
Show Gist options
  • Select an option

  • Save phalcon/4479541 to your computer and use it in GitHub Desktop.

Select an option

Save phalcon/4479541 to your computer and use it in GitHub Desktop.
<?php
$security = new Phalcon\Security();
for ($i = 8; $i < 12; $i++) {
$hash = $security->hash('a', $i);
$this->assertTrue($security->checkHash('a', $hash));
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment