Exemplo n.º 1
0
 public function find($a, $b)
 {
     $pos = strpos($this->plaintext_key, $a);
     $key = $this->getSubstitutionTableEntry($pos);
     $table = new SimpleCipher($this->plaintext_key, $key);
     return $table->crypt($b);
 }