Beefy Boxes and Bandwidth Generously Provided by pair Networks
There's more than one way to do things
 
PerlMonks  

comment on

( [id://3333]=superdoc: print w/replies, xml ) Need Help??
HaHaHa,

In my quest recently to find a way of encrypting and decrypting a string in perl. I came accross this GEM of a web site Infrequently Asked Questions About Perl

I was searching for "perl string decrypt" and came across this page that has this

How do I decrypt a string that I encrypted with crypt()?

I thought I had struck gold. This is exactly what I had been looking for, for hours.

I looked at the code in his solution and thought ... jeesh I am going to need to concentrate on this.!..
This is what it looked like.

sub decrypt { my $c = shift; my @c = (0) x 8; for (;;) { my $i = 0; my $s = join '', map chr, @c; return $s if crypt($s, $c) eq $c; $c[$i]=0, $i++ while $c[$i] == 255; return undef if $i > 7; $c[$i]++; } }

A Warning even followed.

Warning: Exporting this function outside the USA may be illegal under the provisions of ITAR.

I loaded the code into my editor and as I was about to start I noticed the question below the one I was interested in,

How do I get my perl program to run faster?

use more 'cpu'; use less 'time'; use more 'speed';

No!!! It can't be... I have never seen those used before...

It was only then that I started to read the page from the begining...

My best is...

How do I get tomorrow's date?

Use this function:
sub tomorrow_date { sleep 86_400; return localtime(); }

There must be tons more of this stuff out there, as soon as I get a gap I am going to search for it.
-----
Of all the things I've lost in my life, its my mind I miss the most.

In reply to Perl Humor by AcidHawk

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post; it's "PerlMonks-approved HTML":



  • Are you posting in the right place? Check out Where do I post X? to know for sure.
  • Posts may use any of the Perl Monks Approved HTML tags. Currently these include the following:
    <code> <a> <b> <big> <blockquote> <br /> <dd> <dl> <dt> <em> <font> <h1> <h2> <h3> <h4> <h5> <h6> <hr /> <i> <li> <nbsp> <ol> <p> <small> <strike> <strong> <sub> <sup> <table> <td> <th> <tr> <tt> <u> <ul>
  • Snippets of code should be wrapped in <code> tags not <pre> tags. In fact, <pre> tags should generally be avoided. If they must be used, extreme care should be taken to ensure that their contents do not have long lines (<70 chars), in order to prevent horizontal scrolling (and possible janitor intervention).
  • Want more info? How to link or How to display code and escape characters are good places to start.
Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others perusing the Monastery: (3)
As of 2024-04-20 02:14 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found