This commit is contained in:
2024-09-09 16:11:18 +02:00
parent a919eabbba
commit 5fa068776c
16 changed files with 55 additions and 47 deletions
+1 -1
View File
@@ -43,7 +43,7 @@ export default class PwdBox {
const salt = b642a(parts[0])
if (salt === null) return null
const box = SecretBox.fromString(parts.slice(1).join("."))
const box = SecretBox.fromString(parts.slice(1).join('.'))
if (box === null) return null
return new PwdBox(box, salt)