diff --git a/packages/lucia/src/crypto.ts b/packages/lucia/src/crypto.ts index a931753da..99c6b88fb 100644 --- a/packages/lucia/src/crypto.ts +++ b/packages/lucia/src/crypto.ts @@ -4,7 +4,6 @@ import { scrypt } from "./scrypt/index.js"; import { alphabet, generateRandomString } from "oslo/random"; import type { PasswordHashingAlgorithm } from "oslo/password"; -export type { PasswordHashingAlgorithm } from "oslo/password"; async function generateScryptKey(data: string, salt: string, blockSize = 16): Promise { const encodedData = new TextEncoder().encode(data);