SipHash.this

Basic constructor. Initializes the internal state with a 128-bit key, split into two 64-bit parts - the low-order and high-order parts of the key.

  1. this()
  2. this(ulong key0, ulong key1)
    class SipHash(ubyte NUMBER_OF_COMPRESS_ROUNDS = 2, ubyte NUMBER_OF_FINALIZATION_ROUNDS = 4)
    this
    (
    ulong key0
    ,
    ulong key1
    )
  3. this(ubyte[] key)
  4. ulong key0;
  5. ulong key1;

Parameters

key0 ulong

low part of key.

key1 ulong

high part of key.

Meta