Add some stuff to the todo

This commit is contained in:
Zorchenhimer 2024-08-05 22:54:45 -04:00
parent e37e5e2875
commit 268184dcac
Signed by: Zorchenhimer
GPG Key ID: 70A1AB767AAB9C20
1 changed files with 15 additions and 0 deletions

15
todo.md
View File

@ -22,3 +22,18 @@ There's lots of things to add.
- Add a number of public keys to a group. When the client encrypts to a - Add a number of public keys to a group. When the client encrypts to a
group, use all the keys. group, use all the keys.
- Auto-remove expired keys from groups - Auto-remove expired keys from groups
## Technical TODO
More specific stuff
- Wrap keys in Armor when sending over the wire
- Figure out sending multiple keys in the same request. Wrap in json? Can
Armor handle multiple keys? Can I just concatinate multiple Armored keys?
- Auto-generate self-signed certs for testing TLS
- Password protect private keys?
- Where would this password be stored?
- Keys would ultimately need to be stored on disk *somewhere*, and they can't
be unprotected there.
- Reorganize code to split client and server and a common lib
- Look at KMIP. Do I want to implement this?