Const
(Optional) An array of CryptoJS.x64.Word objects.
(Optional) The number of significant bytes in the words.
var wordArray = CryptoJS.x64.WordArray.create();
var wordArray = CryptoJS.x64.WordArray.create([
CryptoJS.x64.Word.create(0x00010203, 0x04050607),
CryptoJS.x64.Word.create(0x18191a1b, 0x1c1d1e1f)
]);
var wordArray = CryptoJS.x64.WordArray.create([
CryptoJS.x64.Word.create(0x00010203, 0x04050607),
CryptoJS.x64.Word.create(0x18191a1b, 0x1c1d1e1f)
], 10);
Initializes a newly created word array.