From 2585f065eb2486a38af51f4acc461e0583286f33 Mon Sep 17 00:00:00 2001 From: Paul Miller Date: Fri, 3 Jan 2025 01:32:33 +0000 Subject: [PATCH] Fix import --- src/utils.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/utils.ts b/src/utils.ts index caa384a..61099e3 100644 --- a/src/utils.ts +++ b/src/utils.ts @@ -3,7 +3,7 @@ * @module */ /*! noble-post-quantum - MIT License (c) 2024 Paul Miller (paulmillr.com) */ -import { bytes as abytes } from '@noble/hashes/_assert'; +import { abytes } from '@noble/hashes/_assert'; import { TypedArray, concatBytes, utf8ToBytes, randomBytes as randb } from '@noble/hashes/utils'; export const ensureBytes: typeof abytes = abytes;