blob: ef16e72af72c9b79ba167495da40bda7e798a95f (
plain) (
blame)
1
2
3
4
5
6
7
|
<script>
window.toHexString = function (byteArray) {
return byteArray.reduce((output, elem) =>
(output + (elem.toString(16).padStart(2, '0').toUpperCase() + ' ')),
'');
}
</script>
|