I've been looking at crypto-js and its encoder converts to and from a WordArray. I looked up the documentation and couldn't find any explanation of what a WordArray might be.
To the best of my knowledge, there isn't even a typed array in JavaScript named WordArray, and neither is there a DataView on any of the typed arrays by that name.
I know what a WORD is in the Visual C++ parlance, but I am not sure what it means here.
Strange, all the threads (here, here and here) I found on crypto-js are using the word WordArray without anyone really asking what it is.
Could someone really tell me? Is it a Uint16Array? Or just another fancy word for a regular byte array (Uint8Array or an untyped Array of integral number values)?