public function testSigner_deriveKeyByGarbage_shouldChoke()
 {
     $this->setExpectedException('Exception');
     $s = new Signer("secret", 'salty', '.', 'garbage');
     $foo = $s->sign("hello");
 }