x64 namespace.
Initializes a newly created 64-bit word.
var x64Word = CryptoJS.x64.Word.create(0x00010203, 0x04050607);
The high 32 bits.
The low 32 bits.
Initializes a newly created word array.
(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);
Generated using TypeDoc
x64 namespace.