cesr
Version:
[](https://www.npmjs.com/package/cesr) [](https://github.com/lenkan/keri-js/blob/main/LICENSE) [ • 947 B
TypeScript
import { Matter } from "./matter.ts";
import { Indexer } from "./indexer.ts";
export declare const cesr: {
crypto: {
ed25519_sig: (raw: Uint8Array) => Matter;
ed448_sig: (raw: Uint8Array) => Matter;
blake3_256: (raw: Uint8Array) => Matter;
blake3_512: (raw: Uint8Array) => Matter;
blake2b_256: (raw: Uint8Array) => Matter;
blake2s_256: (raw: Uint8Array) => Matter;
sha3_256: (raw: Uint8Array) => Matter;
sha2_256: (raw: Uint8Array) => Matter;
ed25519: (raw: Uint8Array) => Matter;
ed25519N: (raw: Uint8Array) => Matter;
ed448: (raw: Uint8Array) => Matter;
ed448N: (raw: Uint8Array) => Matter;
};
index: typeof Indexer.convert;
primitive: {
tag(input: string): Matter;
decimal(input: number): Matter;
hex(input: string): Matter;
string(input: string): Matter;
date(date: Date): Matter;
};
};