public function decode($str) { $str = strtoupper($str); return $this->bin2str($this->tobin($str)); }
public function testDecodeWithCrapData() { $this->setExpectedException('\\Exception'); $this->base32->decode('Crap data'); }