aboutsummaryrefslogtreecommitdiff
path: root/main.c
diff options
context:
space:
mode:
authorsrdusr <graytrevor98@gmail.com>2023-03-14 15:52:41 +0200
committersrdusr <graytrevor98@gmail.com>2023-03-14 15:52:41 +0200
commitaee1814da0ec53a5f0501ca4cf15b9824c5b0cd7 (patch)
tree68cb49716ec710b6e256fc2e8aa37133c6e8d166 /main.c
parent07193f5ac199b73f2e910c8ed652a72e2d3af680 (diff)
downloadcerberus-aee1814da0ec53a5f0501ca4cf15b9824c5b0cd7.tar.gz
cerberus-aee1814da0ec53a5f0501ca4cf15b9824c5b0cd7.zip
Add TODOs
Diffstat (limited to 'main.c')
-rw-r--r--main.c8
1 files changed, 8 insertions, 0 deletions
diff --git a/main.c b/main.c
index 0d8c426..f3d671a 100644
--- a/main.c
+++ b/main.c
@@ -1,3 +1,11 @@
+// TODO: Fix not specifying password length
+// TODO: Fix not specifying password options for which characters/digits/lowercase or uppercase letters
+// TODO: Fix generated encryption key must not be put in directly by user
+// TODO: Use PBKDF2 for generating keys,
+// TODO: Secret stored in memory must be encrypted with a key derived from the user password or consider making password manager stateless (no passwords stored locally)
+// TODO: Replace CBC with GCM or CCM to prevent padding attacks
+// TODO: Have ascii art of a cerberus on start menu/page
+
#include <stdio.h>
#include <stdlib.h>
#include <string.h>