SipHash.this

Basic constructor. Initializes the internal state with a 128-bit key. If key length less than 16 bytes (i.e 128 bit), the key will padded with padding method 2.

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

Parameters

key ubyte[]

key as array of unsigned bytes.

Meta