On Sun, Jun 20, 2010 at 01:54:21PM +0800, Aaron Lewis wrote: > > Aaron Lewis wrote: > > > I'm looking for some crypt methods that will encrypt the whole > > > disk, rather than saving it to a single file. > > > > > > And i need it to be supported both Linux and OpenBSD, is it > > > possible? > > > > in most cases something that encrypts a whole disk or partition is > > kernel / FS level (...) almost every OS has a separate disk > > encryption method (...) > > Understood , FS need kernel driver , which made it hard to port my encrypted > disk to other OS. > > So .. if i use a single file , i'm just worrying that if my file size keep > growing , will there be a problem ?
If you can just unencrypt and re-encrypt whenever necessary, use gnupg (with the --symmetric option if you don't want to deal with keys) or somesuch. Do be careful about temporary files, but this can be made quite convenient (consider e.g. http://www.vim.org/scripts/script.php?script_id=661). Otherwise, you may consider the old and crufty security/cfs port; it may be cross-platform. Joachim