UNPKG

cesr

Version:

[![NPM Version](https://img.shields.io/npm/v/cesr.svg?style=flat)](https://www.npmjs.com/package/cesr) [![NPM License](https://img.shields.io/npm/l/cesr.svg?style=flat)](https://github.com/lenkan/keri-js/blob/main/LICENSE) [![CI](https://github.com/lenkan

27 lines (26 loc) 947 B
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; }; };