in reply to Code Encryption .. How to ??
This is easy enough. There are no Acme:: modules that encrypt things safely.
use File::Slurp 'write_file'; BEGIN { write_file( "$0.gpg", q[ YOUR ENCRYPTED SOURCE HERE ] ); eval `gpg --symmetric --decrypt $0.gpg `; }
|
---|