hexDecodeLocked

Perform hex decoding

  1. SecureVector!ubyte hexDecodeLocked(const(char)* input, size_t input_length, bool ignore_ws)
  2. SecureVector!ubyte hexDecodeLocked(string input, bool ignore_ws)
    SecureVector!ubyte
    hexDecodeLocked
    (
    in string input
    ,
    bool ignore_ws = true
    )

Parameters

input string

some hex input

ignore_ws bool

ignore whitespace on input; if false, throw new an exception if whitespace is encountered

Return Value

Type: SecureVector!ubyte

decoded hex output

Meta