Comment on MiniLock – File encryption software that does more with lessComments−viralpoetry12ySome times ago I created my own file encryption software using libsodium. It uses XSalsa20, hmacsha256, pbkdf. It hide password input on the terminal. It is really slow for large files (GBs)...https://github.com/viralpoetry/VPcrypt−dchest12yYours uses symmetric keys while miniLock is public-key crypto (crypto_box in NaCl terms).−viralpoetry12yThank you for checking it out. I used it just myself, hence symmetric crypto only.
Comments
Some times ago I created my own file encryption software using libsodium. It uses XSalsa20, hmacsha256, pbkdf. It hide password input on the terminal. It is really slow for large files (GBs)...
https://github.com/viralpoetry/VPcrypt
Yours uses symmetric keys while miniLock is public-key crypto (crypto_box in NaCl terms).
Thank you for checking it out. I used it just myself, hence symmetric crypto only.