yeah I'm havin fun with it lol
no custom compression, mostly just xChaCha20Poly1305 to encrypt the data itself, and argon2 for key-derivation + hashing, at least for now
I hasn't considered adding compression too but that could be a pretty useful feature!
no custom compression, mostly just xChaCha20Poly1305 to encrypt the data itself, and argon2 for key-derivation + hashing, at least for now
I hasn't considered adding compression too but that could be a pretty useful feature!
Comments
Still lots of engineering work to do. I'm also using clap because why not, but I ended up writing my own parser before I knew about clap 🤣
could be fun to try writing the compression yourself, if ur into that sorta thing I suppose, or perhaps something like https://crates.io/crates/brotli lol which I haven't used before but I know it's pure rust (no std lib) so cross compilation should be easier
I think to get away with a simple compression algorithm ultimately.