crypto-es
Version:
A cryptography algorithms library compatible with ES6 and TypeScript
12 lines (10 loc) • 290 B
text/typescript
import { Format } from "./cipher-core.mjs";
//#region src/format-hex.d.ts
/**
* Hex formatter for cipher params.
* Converts cipher params to/from hexadecimal strings.
*/
declare const HexFormatter: Format;
//#endregion
export { HexFormatter };
//# sourceMappingURL=format-hex.d.mts.map