From 31cc3ece0cd6c9abc229cb939180edf713962d37 Mon Sep 17 00:00:00 2001 From: Daniel Hougaard <62331820+DanielHougaard@users.noreply.github.com> Date: Thu, 22 Feb 2024 07:01:03 +0100 Subject: [PATCH] Update srp.ts --- backend/src/lib/crypto/srp.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/backend/src/lib/crypto/srp.ts b/backend/src/lib/crypto/srp.ts index 6f4588e3f..bc29cdb3f 100644 --- a/backend/src/lib/crypto/srp.ts +++ b/backend/src/lib/crypto/srp.ts @@ -2,7 +2,7 @@ import argon2 from "argon2"; import crypto from "crypto"; import jsrp from "jsrp"; import nacl from "tweetnacl"; -import * as tweetnacl from "tweetnacl-util"; +import tweetnacl from "tweetnacl-util"; import { TUserEncryptionKeys } from "@app/db/schemas";