@cashlab/common
    Preparing search index...

    Function hexToBin

    • Decode a hexadecimal-encoded string into a Uint8Array.

      E.g.: hexToBin('2a64ff')new Uint8Array([42, 100, 255])

      Note, this method always completes. If validHex is not divisible by 2, the final byte will be parsed as if it were prepended with a 0 (e.g. aaa is interpreted as aa0a). If validHex is potentially malformed

      For the reverse, see binToHex.

      Parameters

      • validHex: string

        a string of valid, hexadecimal-encoded data

      Returns Uint8Array