in reply to Re^2: line by line Encryption fun with Crypt::CBC and Rijndael? File Ownership issues?
in thread line by line Encryption fun with Crypt::CBC and Rijndael? File Ownership issues?

You could use openssl enc -aes-256-cbc. That's probably the best compliance with the notion of "standard" that you could find.

Be careful not to pass the encryption key as an environment variable, since the environment variables can be visible in ps in most Unix-like operating systems. And do double check that you have a usable /dev/urandom.

  • Comment on Re^3: line by line Encryption fun with Crypt::CBC and Rijndael? File Ownership issues?