UNPKG

zeus-time

Version:

Deterministic, cryptographically verifiable time hashing for Node, browser, and Expo/React Native.

8 lines (6 loc) 181 B
export type ZeusAlgorithm = "blake3" | "sha256"; export type ZeusFormat = "hex" | "base64url"; export interface ZeusOptions { algorithm?: ZeusAlgorithm; format?: ZeusFormat; }