Beefy Boxes and Bandwidth Generously Provided by pair Networks
"be consistent"
 
PerlMonks  

comment on

( [id://3333]=superdoc: print w/replies, xml ) Need Help??
#!/usr/bin/perl -w @A = ( '/', '$', '[', ']', '{', '~', ')', '@', '#', '_', ',', ';', '.' +, ':' ); @B = ( '+', '-', '%', '?', '}', '<', '>', '(', '!' ); @C = ( 0 .. 9, "A" .. "Z", "a" .. "z", '"', '\'', '&', '|', '*', '^', +'=' ); print "> "; $text = <>; chomp $text; @text = map( ord ^ 42, split //, $text ); for $i ( 0 .. $#text ) { $text[$i] = 0 . sprintf( '%b', $text[$i] ) while length $text[$i] +< 8; @bits = split //, $text[$i] ; for $j ( 0 .. $#bits ) { $bits[$j] =~ s/1/x/; $bits[$j] =~ s/0/1/; $bits[$j] =~ s/x/0/; } @bits = split //, ( $bits[4] . $bits[5] . $bits[6] . $bits[7] . $b +its[0] . $bits[1] . $bits[2] . $bits[3] ); for $j ( 0 .. $#bits ) { $output .= $A[ int( rand(@A) ) ] if $bits[$j] eq "0"; $output .= $B[ int( rand(@B) ) ] if $bits[$j] eq "1"; $output .= $C[ int( rand(@C) ) ] if int( rand(100) ) < 42; } } print "\n$output\n";

In reply to An Useless Cipher by Oromis92

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 wandering the Monastery: (4)
As of 2024-03-29 08:55 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found