Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations IamaSherpa on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. joegas

    encrypting a perl .pm module

    no its not cgi, though I really cant talk much about what the code is for. And I know how insecure it is, but this is what the customer is asking for... they want me to give them a huge pad lock on a 3 foot fence when what they really need is a bigger fence. speed isnt an issue, the parts of...
  2. joegas

    need help with simple code "ls -al" with time in format 14:38 Mar 14

    you can do something like this: #!/usr/local/bin/perl @ls = `ls -al`; foreach $line (@ls) { chomp $line; $ls = join("\t"...
  3. joegas

    encrypting a perl .pm module

    I've had no luck encrypting the mods so far. I've been trying to use Filter::CBC with no luck. visable at some point is not a worry, however I'm trying to avoid writing it to disk (though swap is ok). CBC is just the method of filtering the file, I'm using Blowfish to encrypt the file, and...
  4. joegas

    encrypting a perl .pm module

    Is there a way or has anyone had any luck using CBC (chain block cypher) to encrypt a perl MODULE (not the .pl file) on the fly? I can encrypt the .pl files without any errors, but a method of encrypting the modules has eluded me. Thanks Joe

Part and Inventory Search

Back
Top