Options
All
  • Public
  • Public/Protected
  • All
Menu

x64 namespace.

Index

Interfaces

Variables

Variables

Word

Word: { create: any }

Type declaration

  • create:function
    • Initializes a newly created 64-bit word.

      example
      var x64Word = CryptoJS.x64.Word.create(0x00010203, 0x04050607);
      

      Parameters

      • high: number

        The high 32 bits.

      • low: number

        The low 32 bits.

      Returns cryptojs.x64.Word

WordArray

WordArray: { create: any }

Initializes a newly created word array.

param words

(Optional) An array of CryptoJS.x64.Word objects.

param sigBytes

(Optional) The number of significant bytes in the words.

example
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);

Type declaration

  • create:function
    • create(words?: X64WordArray[], sigBytes?: number): X64WordArray
    • Parameters

      • Optional words: X64WordArray[]
      • Optional sigBytes: number

      Returns X64WordArray

Generated using TypeDoc