[Feat] Settings UI Auth (#3) & Prepare for v0.1.1-rel

This commit is contained in:
Minoricew
2025-06-02 00:22:46 +08:00
parent 1320f5397a
commit a86d13431b
12 changed files with 569 additions and 34 deletions

9
src/aura/types/shared/config.d.ts vendored Executable file
View File

@@ -0,0 +1,9 @@
type AES256EncryptedConfig = string;
type Base64String = string;
interface EncryptedConfig {
content: AES256EncryptedConfig;
authTag: Base64String;
salt: Base64String;
iv: Base64String;
}