Skip to main content
Module

x/alosaur/src/security/session/src/secp256k1/mod.ts>utils

Alosaur - Deno web framework with many decorators
Very Popular
Go to Latest
variable utils
Re-export
import { utils } from "https://deno.land/x/alosaur@v0.38.0/src/security/session/src/secp256k1/mod.ts";

type

{ bytesToHex; hexToBytes; concatBytes; mod; invert; _bigintTo32Bytes; _normalizePrivateKey; hashToPrivateKey: (hash: Hex) => Uint8Array; randomBytes: (bytesLength?: number) => Uint8Array; randomPrivateKey: () => Uint8Array; sha256: (...messages: Uint8Array[]) => Promise<Uint8Array>; hmacSha256: (key: Uint8Array, ...messages: Uint8Array[]) => Promise<Uint8Array>; sha256Sync; hmacSha256Sync; taggedHash: (tag: string, ...messages: Uint8Array[]) => Promise<Uint8Array>; taggedHashSync: (tag: string, ...messages: Uint8Array[]) => Uint8Array; _JacobianPoint; isValidPrivateKey(privateKey: PrivKey); precompute(windowSize?, point?): Point; }