ot::Utils::CmdLineParser::Arg::ParseAsHexString() const method
Parses the argument as a hex string into a byte array of fixed expected size. Returns `kErrorNone` only when the hex string contains exactly @p aSize bytes (after parsing). If there are fewer or more bytes in hex string that @p aSize, the parsed bytes (up to @p aSize) are copied into the `aBuffer` and `kErrorInvalidArgs` is returned.
Arguments
aBuffer
A pointer to a buffer to output the parsed byte sequence.
aSize
The expected size of byte sequence (number of bytes after parsing).
Return value
kErrorNone The argument was parsed successfully. kErrorInvalidArgs The argument is empty or does not contain valid hex bytes and/or not @p aSize bytes.