diff options
| author | srdusr <graytrevor98@gmail.com> | 2023-03-14 15:52:41 +0200 |
|---|---|---|
| committer | srdusr <graytrevor98@gmail.com> | 2023-03-14 15:52:41 +0200 |
| commit | aee1814da0ec53a5f0501ca4cf15b9824c5b0cd7 (patch) | |
| tree | 68cb49716ec710b6e256fc2e8aa37133c6e8d166 /main.c | |
| parent | 07193f5ac199b73f2e910c8ed652a72e2d3af680 (diff) | |
| download | cerberus-aee1814da0ec53a5f0501ca4cf15b9824c5b0cd7.tar.gz cerberus-aee1814da0ec53a5f0501ca4cf15b9824c5b0cd7.zip | |
Add TODOs
Diffstat (limited to 'main.c')
| -rw-r--r-- | main.c | 8 |
1 files changed, 8 insertions, 0 deletions
@@ -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> |
