@oaklean/profiler-core
Version:
Part of the @oaklean suite. It provides all basic functions to work with the `.oak` file format. It allows parsing the `.oak` file format as well as tools for analyzing the measurement values. It also provides all necessary capabilities required for prec
10 lines (9 loc) • 403 B
TypeScript
import { UUID_string } from '../types';
export declare class Crypto {
static hash(value: string | Buffer): string;
static smallHash(input: string): string;
private static uuidModule;
static getUUIDModule(): Promise<typeof import("uuid", { with: { "resolution-mode": "import" } }).v4>;
static uniqueID(): Promise<UUID_string>;
static validateUniqueID(id: UUID_string): boolean;
}