/** * Implementation of ObjectIdentifier's (OID) registry for curves and hash algorithms * @module */ import { type GostCurveParameters } from "../gost3410/const.js"; import type { CipherOrHashFunctionWrapper } from "../types.js"; /** Get curve parameters by OID */ export declare const getCurveByOid: (oid: string) => GostCurveParameters | undefined; /** Get hash function by OID */ export declare const getHashByOid: (oid: string) => CipherOrHashFunctionWrapper | undefined;