in reply to Re^2: 32 Character limit
in thread 32 Character limit
Isn't my code only calling cryptText (my encrypt sub) one time?
No, once for each element in @$input.
foreach my $text (@$input) { ... $text = encrypt($text,$key); ... }
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^4: 32 Character limit
by z662 (Initiate) on Feb 11, 2011 at 01:11 UTC | |
|
Re^4: 32 Character limit
by z662 (Initiate) on Feb 15, 2011 at 23:50 UTC | |
by ikegami (Patriarch) on Feb 16, 2011 at 00:51 UTC |