Auth0\SDK\API\Helpers\TokenGenerator::bstr2bin PHP Method

bstr2bin() protected method

protected bstr2bin ( $input )
    protected function bstr2bin($input)
    {
        // Unpack as a hexadecimal string
        $value = $this->str2hex($input);
        // Output binary representation
        return base_convert($value, 16, 2);
    }