diff --git a/src/index.ts b/src/index.ts index 658e2a7..ec870d7 100644 --- a/src/index.ts +++ b/src/index.ts @@ -1,6 +1,29 @@ import { ed25519 } from "@noble/curves/ed25519"; import { sha512 } from "@noble/hashes/sha512"; +export { + bytesToHex, + hexToBytes, + toBytes, + concatBytes, + randomBytes, +} from "@noble/hashes/utils"; +export { + numberToHexUnpadded, + hexToNumber, + bytesToNumberBE, + bytesToNumberLE, + numberToBytesBE, + numberToBytesLE, + numberToVarBytesBE, + ensureBytes, + equalBytes, + utf8ToBytes, + bitLen, + bitGet, + bitSet, + bitMask, +} from "@noble/curves/abstract/utils"; export * from "./err.js"; export * from "./errTracker.js"; export * from "./objAsString.js";