hexEncode

Perform hex encoding

  1. void hexEncode(char* output, const(ubyte)* input, size_t input_length, bool uppercase)
  2. string hexEncode(const(ubyte)* input, size_t input_length, bool uppercase)
  3. string hexEncode(Vector!(ubyte, Alloc) input, bool uppercase)
  4. string hexEncode(RefCounted!(Vector!(ubyte, Alloc), Alloc) input, bool uppercase)
    string
    hexEncode
    (
    Alloc
    )
    (
    auto const ref RefCounted!(Vector!(ubyte, Alloc), Alloc) input
    ,
    bool uppercase = true
    )

Parameters

input RefCounted!(Vector!(ubyte, Alloc), Alloc)

some input

uppercase bool

should output be upper or lower case?

Return Value

Type: string

hexadecimal representation of input

Meta