Compare commits

...

3 Commits

Author SHA1 Message Date
Flatlogic Bot
3a1efb73f9 345 2025-04-13 22:34:45 +00:00
1300209ee6 Update app-shell/src/encryption-utils.js 2025-04-13 22:16:06 +00:00
Flatlogic Bot
20c72486aa first 2025-04-13 21:53:37 +00:00
3 changed files with 10 additions and 1 deletions

5
.gitignore vendored
View File

@ -1,3 +1,8 @@
node_modules/
*/node_modules/
*/build/
**/node_modules/
**/build/
.DS_Store
.env

View File

@ -18,6 +18,10 @@ async function encryptData(data, encryptionKeyBase64 = schema_encryption_key) {
}
const key = base64.decode(encryptionKeyBase64);
console.log(`[DEBUG] Decoded key length (bytes): ${key ? key.length : 0}`); // Добавили эту строку
const iv = crypto.randomBytes(12);
const cipher = crypto.createCipheriv(algorithm, key, iv);

View File

@ -50,7 +50,7 @@ export default function Login() {
remember: true,
});
const title = 'Цудсщьу';
const title = 'Welcome';
// Fetch Pexels image/video
useEffect(() => {