Converts a Uint8Array into a string with base 16 hex digits. It doesn't include an opening '0x'.
Uint8Array to convert to hex.
String with base 16 hex digits.
Convert a positive integer byte (0 to 0xFF) into a hex string.
Number to convert into a hex string.
Boolean to add '0x' to the beginning of the string.
String with hex value, padded to always at least 2 characters.
A version of byteToHexStr() without input sanitation, only to be called when the caller can guarantee the input is a positive integer between 0 and 0xFF.
Number to convert into a hex string.
String with hex value, padded to always have 2 characters.
Concatenates an array of Uint8Arrays into a single Uint8Array.
Arrays to concatenate.
Single concatenated Uint8Array.
Convert from a string with a hexadecimal number into a Uint8Array byte array.
A string with a hexadecimal number.
A Uint8Array with the number broken down in bytes.
Generated using TypeDoc
General utilities.