An array of 32-bit words.
The number of significant bytes in this word array.
The array of 32-bit words.
Removes insignificant bits.
wordArray.clamp(); Copy
wordArray.clamp();
Creates a copy of this word array.
The clone.
var clone = wordArray.clone(); Copy
var clone = wordArray.clone();
Concatenates a word array to this word array.
The word array to append.
This word array.
wordArray1.concat(wordArray2); Copy
wordArray1.concat(wordArray2);
Converts this word array to a string.
Optional
(Optional) The encoding strategy to use. Default: CryptoJS.enc.Hex
The stringified word array.
var string = wordArray + ''; var string = wordArray.toString(); var string = wordArray.toString(CryptoJS.enc.Utf8); Copy
var string = wordArray + ''; var string = wordArray.toString(); var string = wordArray.toString(CryptoJS.enc.Utf8);
An array of 32-bit words.