cross-platform file encryption

Recall from a previous post that I was playing around with Filevault on Mac OSX not too long ago, which encrypts your home folder on the fly. I ultimately decided that it was not worth it, since it messed up a few programs, and most of my data is not very sensitive. However, I do have some sensitive data, like bank statements and such, that I keep on my computer. And now that I am mostly using linux, but still using Mac some, I have decided that using an encrypted .sparseimage file is not so cool anymore. Today I researched for some alternatives, and it seems like ccrypt is the solution that works best for me. It is available for Mac, most all *nix flavors, and Windows. It also uses very strong AES encryption. I like to keep a whole directory in some sort of encrypted archive, which I can then decrypt when I want to. To do this with my bank statements, I would encrypt it like so:


tar -cvz statements | ccencrypt -K password -H password > statements.tar.gz.cpt
rm -fR statements

Then when I want to decrypt it, I only have to do:

cat statements.tar.gz.cpt | ccdecrypt -K password | tar -xvz

3 responses to “cross-platform file encryption”

  1. Andrew Avatar
    Andrew

    Wouldn’t this leave the directory super-easy to recover? Could you instead use shred to write random data over it?

  2. Folde encryption software Avatar

    Hi,
    Thanks for the nice post. I like it keep it up.
    I find the Proper information in this post.

    Cheers

  3. babykläder Avatar

    thanks for sharing your knowledge. I appariciate for your effort. I got useful info through this blog.
    Thanks

Join 38 other subscribers

archives

  • 2026 (7)
  • 2025 (10)
  • 2024 (10)
  • 2023 (8)
  • 2022 (15)
  • 2021 (19)
  • 2020 (1)
  • 2019 (1)
  • 2018 (2)
  • 2017 (1)
  • 2016 (2)
  • 2015 (5)
  • 2014 (5)
  • 2013 (2)
  • 2011 (7)
  • 2010 (10)
  • 2009 (50)
  • 2008 (28)
  • 2007 (31)
  • 2006 (8)

Category