hexDecodeLocked

Perform hex decoding

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

Parameters

input const(char)*

some hex input

input_length size_t

the length of input in bytes

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