git.bettercrypto.org
/
ach-master.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
8bd38c0
)
same
author
Aaron Kaplan
<aaron@lo-res.org>
Mon, 9 Dec 2013 22:08:56 +0000
(23:08 +0100)
committer
Aaron Kaplan
<aaron@lo-res.org>
Mon, 9 Dec 2013 22:08:56 +0000
(23:08 +0100)
src/perlify.pl
[new file with mode: 0755]
patch
|
blob
diff --git a/src/perlify.pl
b/src/perlify.pl
new file mode 100755
(executable)
index 0000000..
429b512
--- /dev/null
+++ b/
src/perlify.pl
@@ -0,0
+1,11
@@
+#!/usr/bin/env perl
+
+use strict;
+
+my cipherStrB='EDH+CAMELLIA:EDH+aRSA:EECDH+aRSA+AESGCM:EECDH+aRSA+SHA384:EECDH+aRSA+SHA256:EECDH:+CAMELLIA256:+AES256:+CAMELLIA128:+AES128:+SSLv3:!aNULL:!eNULL:!LOW:!3DES:!MD5:!EXP:!PSK:!SRP:!DSS:!RC4:!SEED:!ECDSA:CAMELLIA256-SHA:AES256-SHA:CAMELLIA128-SHA:AES128-SHA';
+
+
+while (<>) {
+ $_ =~ s/\@\@\@@CIPHERSTRINGB\@\@\@/$cipherStrB/g;
+ print ;
+}