/** * Deprecated module: moved from curves/abstract/utils.js to curves/utils.js * @module */ import * as u from '../utils.ts'; /** @deprecated moved to `@noble/curves/utils.js` */ export type Hex = u.Hex; /** @deprecated moved to `@noble/curves/utils.js` */ export type PrivKey = u.PrivKey; /** @deprecated moved to `@noble/curves/utils.js` */ export type CHash = u.CHash; /** @deprecated moved to `@noble/curves/utils.js` */ export type FHash = u.FHash; /** @deprecated moved to `@noble/curves/utils.js` */ export const abytes: typeof u.abytes = u.abytes; /** @deprecated moved to `@noble/curves/utils.js` */ export const anumber: typeof u.anumber = u.anumber; /** @deprecated moved to `@noble/curves/utils.js` */ export const bytesToHex: typeof u.bytesToHex = u.bytesToHex; /** @deprecated moved to `@noble/curves/utils.js` */ export const bytesToUtf8: typeof u.bytesToUtf8 = u.bytesToUtf8; /** @deprecated moved to `@noble/curves/utils.js` */ export const concatBytes: typeof u.concatBytes = u.concatBytes; /** @deprecated moved to `@noble/curves/utils.js` */ export const hexToBytes: typeof u.hexToBytes = u.hexToBytes; /** @deprecated moved to `@noble/curves/utils.js` */ export const isBytes: typeof u.isBytes = u.isBytes; /** @deprecated moved to `@noble/curves/utils.js` */ export const randomBytes: typeof u.randomBytes = u.randomBytes; /** @deprecated moved to `@noble/curves/utils.js` */ export const utf8ToBytes: typeof u.utf8ToBytes = u.utf8ToBytes; /** @deprecated moved to `@noble/curves/utils.js` */ export const abool: typeof u.abool = u.abool; /** @deprecated moved to `@noble/curves/utils.js` */ export const numberToHexUnpadded: typeof u.numberToHexUnpadded = u.numberToHexUnpadded; /** @deprecated moved to `@noble/curves/utils.js` */ export const hexToNumber: typeof u.hexToNumber = u.hexToNumber; /** @deprecated moved to `@noble/curves/utils.js` */ export const bytesToNumberBE: typeof u.bytesToNumberBE = u.bytesToNumberBE; /** @deprecated moved to `@noble/curves/utils.js` */ export const bytesToNumberLE: typeof u.bytesToNumberLE = u.bytesToNumberLE; /** @deprecated moved to `@noble/curves/utils.js` */ export const numberToBytesBE: typeof u.numberToBytesBE = u.numberToBytesBE; /** @deprecated moved to `@noble/curves/utils.js` */ export const numberToBytesLE: typeof u.numberToBytesLE = u.numberToBytesLE; /** @deprecated moved to `@noble/curves/utils.js` */ export const numberToVarBytesBE: typeof u.numberToVarBytesBE = u.numberToVarBytesBE; /** @deprecated moved to `@noble/curves/utils.js` */ export const ensureBytes: typeof u.ensureBytes = u.ensureBytes; /** @deprecated moved to `@noble/curves/utils.js` */ export const equalBytes: typeof u.equalBytes = u.equalBytes; /** @deprecated moved to `@noble/curves/utils.js` */ export const copyBytes: typeof u.copyBytes = u.copyBytes; /** @deprecated moved to `@noble/curves/utils.js` */ export const asciiToBytes: typeof u.asciiToBytes = u.asciiToBytes; /** @deprecated moved to `@noble/curves/utils.js` */ export const inRange: typeof u.inRange = u.inRange; /** @deprecated moved to `@noble/curves/utils.js` */ export const aInRange: typeof u.aInRange = u.aInRange; /** @deprecated moved to `@noble/curves/utils.js` */ export const bitLen: typeof u.bitLen = u.bitLen; /** @deprecated moved to `@noble/curves/utils.js` */ export const bitGet: typeof u.bitGet = u.bitGet; /** @deprecated moved to `@noble/curves/utils.js` */ export const bitSet: typeof u.bitSet = u.bitSet; /** @deprecated moved to `@noble/curves/utils.js` */ export const bitMask: typeof u.bitMask = u.bitMask; /** @deprecated moved to `@noble/curves/utils.js` */ export const createHmacDrbg: typeof u.createHmacDrbg = u.createHmacDrbg; /** @deprecated moved to `@noble/curves/utils.js` */ export const notImplemented: typeof u.notImplemented = u.notImplemented; /** @deprecated moved to `@noble/curves/utils.js` */ export const memoized: typeof u.memoized = u.memoized; /** @deprecated moved to `@noble/curves/utils.js` */ export const validateObject: typeof u.validateObject = u.validateObject; /** @deprecated moved to `@noble/curves/utils.js` */ export const isHash: typeof u.isHash = u.isHash;