From 94287ce2d9472c820e0f776aa391f09f488bf448 Mon Sep 17 00:00:00 2001 From: Derrick Hammer Date: Sat, 1 Jul 2023 05:08:56 -0400 Subject: [PATCH] refactor: re-export several crypto, string, and binary utilities --- src/index.ts | 19 ++++++++++++++++++- 1 file changed, 18 insertions(+), 1 deletion(-) diff --git a/src/index.ts b/src/index.ts index f11fa70..7094d5a 100644 --- a/src/index.ts +++ b/src/index.ts @@ -1,2 +1,19 @@ -export { DataFn, Err, addContextToErr, objAsString } from "@lumeweb/libweb"; +export { + DataFn, + Err, + ErrTuple, + addContextToErr, + objAsString, + hexToBuf, + b64ToBuf, + bufToB64, + bufToStr, + decodeU64, + encodeU64, + ed25519, + sha512, + ensureBytes, + equalBytes, + utf8ToBytes, +} from "@lumeweb/libweb"; export { callModule, connectModule, log, logErr } from "./api.js";