egirlskey/src/client/app/common/scripts/2fa.ts

6 lines
142 B
TypeScript

export function hexifyAB(buffer) {
return Array.from(new Uint8Array(buffer))
.map(item => item.toString(16).padStart(2, 0))
.join('');
}