Update AgreementPage and EncryptionHelper for improved data handling and clarity
Java CI / build (push) Successful in 40s
.NET+Docker CI/CD / Unit and Integration tests (push) Failing after 23s
.NET+Docker CI/CD / Push Docker image to ghcr.io (push) Has been skipped

Signed-off-by: Dmitrii <computer@yawaflua.tech>

Took 2 minutes
This commit is contained in:
Dmitrii
2026-06-29 03:42:50 +03:00
parent 9f0209af6c
commit 23291a1932
2 changed files with 11 additions and 7 deletions
@@ -47,7 +47,6 @@ public static class EncryptionHelper
using var encryptor = aes.CreateEncryptor(aes.Key, iv);
using var ms = new MemoryStream();
// Write the IV to the beginning of the stream so it is stored alongside the ciphertext
ms.Write(iv, 0, iv.Length);
using (var cs = new CryptoStream(ms, encryptor, CryptoStreamMode.Write))