PicoCrypt — Quick Guide

VeraCrypt

If you are currently using for file containers, Cryptomator for cloud encryption, or GPG for single files, the answer is yes .

Q: Can I decrypt a Picocrypt file in 20 years?

A: Yes. Since the source code is MIT licensed and the algorithm (XChaCha20) is standardized, future decompilers will exist. Save a copy of the Picocrypt binary with your archive.

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)

Picocrypt [exclusive] [ 2024 ]

PicoCrypt — Quick Guide

VeraCrypt

If you are currently using for file containers, Cryptomator for cloud encryption, or GPG for single files, the answer is yes .

Q: Can I decrypt a Picocrypt file in 20 years?

A: Yes. Since the source code is MIT licensed and the algorithm (XChaCha20) is standardized, future decompilers will exist. Save a copy of the Picocrypt binary with your archive. picocrypt

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) PicoCrypt — Quick Guide VeraCrypt If you are