Browse links
US residents can opt out of "sales" of personal data.
Picocrypt is an open-source, portable, and minimalist file encryption tool designed to provide high security without the complexity of traditional software like VeraCrypt Key Features Portability
Encryption: salt = random(16 bytes) key = Argon2id(password, salt, time=4, memory=64 MiB, threads=4, key_len=32) nonce = random(24 bytes) ciphertext = XChaCha20-Poly1305_encrypt(plaintext, nonce, key, additional_data=header) output = salt + nonce + ciphertext picocrypt
: Current work is limited to minor bug fixes and ensuring compatibility with newer OS versions. Picocrypt is an open-source, portable, and minimalist file
: Most users can master it in seconds. To encrypt, you simply drag and drop your file into the window, enter a password, and click Encrypt . Not just encryption — it’s deniable encryption with
When you encrypt a file with Picocrypt, it actually does three things simultaneously:
Decryption: salt, nonce, ciphertext = split(input) key = Argon2id(password, salt, ...) plaintext = XChaCha20-Poly1305_decrypt(ciphertext, nonce, key, additional_data) (Integrity fails if authentication tag mismatch)