Circe

Implementation of Circe digester.

Circe is a very fast and efficient key derivation algorithm designed for 256 bit keys.

import tern.digest.circe

string key = "...";
ulong seed = 0xFF3CA9FF;
auto keyHash = Circe.hash(cast(ubyte)key, seed);
static
@digester
class Circe {}

Members

Static functions

hash
ubyte[] hash(ubyte[] data, ulong seed)

Derives a 256 bit key from data.

Meta