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
    )

Return Value

key0 = low part of key. key1 = high part of key.

Meta