abstract public function toBinary(): string;
/**
* Returns the identifier as a base58 case sensitive string.
*
* @example 2AifFTC3zXgZzK5fPrrprL (len=22)
*/
public function toBase58(): string
{ return strtr(sprintf('%022s', BinaryUtil::
toBase($this->
toBinary(), BinaryUtil::BASE58
)), '0', '1'
);
} /**
* Returns the identifier as a base32 case insensitive string.
*
* @see https://tools.ietf.org/html/rfc4648#section-6
*
* @example 09EJ0S614A9FXVG9C5537Q9ZE1 (len=26)
*/
public function toBase32(): string
{