The crypto-es library uses its own format for hash the WordArray
WordArray {
// The number of significant bytes in the words.
sigBytes: 16
// An array of 32-bit words.
words: [1013011610, 748842083, 565183709, -233379442]
}
How this WordArray could be converted to Uint8Array?
I need this because I have some converting hash to string that expect Uint8Array as an input. And I can't use it with WordArray hash.