A 64-bit word.
Adds this word with the passed word.
var added = x64Word.add(anotherX64Word);
The x64-Word to add with this word.
A new x64-Word object after adding.
Bitwise ANDs this word with the passed word.
var anded = x64Word.and(anotherX64Word);
The x64-Word to AND with this word.
A new x64-Word object after ANDing.
Bitwise NOTs this word.
var negated = x64Word.not();
A new x64-Word object after negating.
Bitwise ORs this word with the passed word.
var ored = x64Word.or(anotherX64Word);
The x64-Word to OR with this word.
A new x64-Word object after ORing.
Rotates this word n bits to the left.
var rotated = x64Word.rotL(25);
The number of bits to rotate.
A new x64-Word object after rotating.
Rotates this word n bits to the right.
var rotated = x64Word.rotR(7);
Shifts this word n bits to the left.
var shifted = x64Word.shiftL(25);
The number of bits to shift.
A new x64-Word object after shifting.
Shifts this word n bits to the right.
var shifted = x64Word.shiftR(7);
Bitwise XORs this word with the passed word.
var xored = x64Word.xor(anotherX64Word);
The x64-Word to XOR with this word.
A new x64-Word object after XORing.
Generated using TypeDoc
A 64-bit word.