Hjsplit protonmail

A interesting combination!

hjsplit is a command-line tool used to split large files into smaller chunks, while ProtonMail is a secure email service that uses end-to-end encryption to protect user communications.

If you're looking to split a large file and then send it securely through ProtonMail, here's a possible workflow:

  1. Use hjsplit to split the large file into smaller chunks. For example:

    hjsplit -s 10M large_file.txt

    This will split the large_file.txt into chunks of approximately 10MB each.

  2. Create a new email in ProtonMail and attach each chunk of the file as a separate attachment. You can do this by dragging and dropping each chunk into the email composition window.

  3. Compose the email with the subject and body as desired, and send it to the recipient.

  4. The recipient can then reassemble the file by using hjsplit with the -r option, like this:

    hjsplit -r -o reassembled_file.txt chunk1 chunk2 chunk3...

    This will reassemble the chunks into a single file, reassembled_file.txt.

By using hjsplit and ProtonMail together, you can securely send large files by splitting them into smaller chunks and encrypting each chunk individually.