/** * Converts a string to Uint8Array and pads with zeroes to the desired length * @param input input string * @param length desired output length */ export default function addStringAndPadWithZeroes(input: string, length: number): Uint8Array;