aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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>