summaryrefslogtreecommitdiff
path: root/lib/Crypt/Cipher
diff options
context:
space:
mode:
authorKarel Miko <karel.miko@gmail.com>2019-10-19 19:42:22 +0200
committerKarel Miko <karel.miko@gmail.com>2019-10-19 19:42:22 +0200
commit23f2acc4257d59ce136d559cb005d61420aae9e4 (patch)
treebefd940ccc06b838d8736686c640bb00c096734a /lib/Crypt/Cipher
parentbc6b3c66ce09ecd2e787702954029f18a44aa776 (diff)
v0.065
Diffstat (limited to 'lib/Crypt/Cipher')
-rw-r--r--lib/Crypt/Cipher/AES.pm2
-rw-r--r--lib/Crypt/Cipher/Anubis.pm2
-rw-r--r--lib/Crypt/Cipher/Blowfish.pm2
-rw-r--r--lib/Crypt/Cipher/CAST5.pm2
-rw-r--r--lib/Crypt/Cipher/Camellia.pm2
-rw-r--r--lib/Crypt/Cipher/DES.pm2
-rw-r--r--lib/Crypt/Cipher/DES_EDE.pm2
-rw-r--r--lib/Crypt/Cipher/IDEA.pm2
-rw-r--r--lib/Crypt/Cipher/KASUMI.pm2
-rw-r--r--lib/Crypt/Cipher/Khazad.pm2
-rw-r--r--lib/Crypt/Cipher/MULTI2.pm2
-rw-r--r--lib/Crypt/Cipher/Noekeon.pm2
-rw-r--r--lib/Crypt/Cipher/RC2.pm2
-rw-r--r--lib/Crypt/Cipher/RC5.pm2
-rw-r--r--lib/Crypt/Cipher/RC6.pm2
-rw-r--r--lib/Crypt/Cipher/SAFERP.pm2
-rw-r--r--lib/Crypt/Cipher/SAFER_K128.pm2
-rw-r--r--lib/Crypt/Cipher/SAFER_K64.pm2
-rw-r--r--lib/Crypt/Cipher/SAFER_SK128.pm2
-rw-r--r--lib/Crypt/Cipher/SAFER_SK64.pm2
-rw-r--r--lib/Crypt/Cipher/SEED.pm2
-rw-r--r--lib/Crypt/Cipher/Serpent.pm2
-rw-r--r--lib/Crypt/Cipher/Skipjack.pm2
-rw-r--r--lib/Crypt/Cipher/Twofish.pm2
-rw-r--r--lib/Crypt/Cipher/XTEA.pm2
25 files changed, 25 insertions, 25 deletions
diff --git a/lib/Crypt/Cipher/AES.pm b/lib/Crypt/Cipher/AES.pm
index 956a800d..81706d7c 100644
--- a/lib/Crypt/Cipher/AES.pm
+++ b/lib/Crypt/Cipher/AES.pm
@@ -4,7 +4,7 @@ package Crypt::Cipher::AES;
use strict;
use warnings;
-our $VERSION = '0.064_001';
+our $VERSION = '0.065';
use base qw(Crypt::Cipher);
diff --git a/lib/Crypt/Cipher/Anubis.pm b/lib/Crypt/Cipher/Anubis.pm
index 8fed2b45..2f6f12ad 100644
--- a/lib/Crypt/Cipher/Anubis.pm
+++ b/lib/Crypt/Cipher/Anubis.pm
@@ -4,7 +4,7 @@ package Crypt::Cipher::Anubis;
use strict;
use warnings;
-our $VERSION = '0.064_001';
+our $VERSION = '0.065';
use base qw(Crypt::Cipher);
diff --git a/lib/Crypt/Cipher/Blowfish.pm b/lib/Crypt/Cipher/Blowfish.pm
index 6ef3f3c4..5ee5830d 100644
--- a/lib/Crypt/Cipher/Blowfish.pm
+++ b/lib/Crypt/Cipher/Blowfish.pm
@@ -4,7 +4,7 @@ package Crypt::Cipher::Blowfish;
use strict;
use warnings;
-our $VERSION = '0.064_001';
+our $VERSION = '0.065';
use base qw(Crypt::Cipher);
diff --git a/lib/Crypt/Cipher/CAST5.pm b/lib/Crypt/Cipher/CAST5.pm
index 7dda5a42..badc1fdb 100644
--- a/lib/Crypt/Cipher/CAST5.pm
+++ b/lib/Crypt/Cipher/CAST5.pm
@@ -4,7 +4,7 @@ package Crypt::Cipher::CAST5;
use strict;
use warnings;
-our $VERSION = '0.064_001';
+our $VERSION = '0.065';
use base qw(Crypt::Cipher);
diff --git a/lib/Crypt/Cipher/Camellia.pm b/lib/Crypt/Cipher/Camellia.pm
index 83cff29c..d9d04df3 100644
--- a/lib/Crypt/Cipher/Camellia.pm
+++ b/lib/Crypt/Cipher/Camellia.pm
@@ -4,7 +4,7 @@ package Crypt::Cipher::Camellia;
use strict;
use warnings;
-our $VERSION = '0.064_001';
+our $VERSION = '0.065';
use base qw(Crypt::Cipher);
diff --git a/lib/Crypt/Cipher/DES.pm b/lib/Crypt/Cipher/DES.pm
index 6ca7dacd..fbc666e8 100644
--- a/lib/Crypt/Cipher/DES.pm
+++ b/lib/Crypt/Cipher/DES.pm
@@ -4,7 +4,7 @@ package Crypt::Cipher::DES;
use strict;
use warnings;
-our $VERSION = '0.064_001';
+our $VERSION = '0.065';
use base qw(Crypt::Cipher);
diff --git a/lib/Crypt/Cipher/DES_EDE.pm b/lib/Crypt/Cipher/DES_EDE.pm
index 33da7827..0dfdb996 100644
--- a/lib/Crypt/Cipher/DES_EDE.pm
+++ b/lib/Crypt/Cipher/DES_EDE.pm
@@ -4,7 +4,7 @@ package Crypt::Cipher::DES_EDE;
use strict;
use warnings;
-our $VERSION = '0.064_001';
+our $VERSION = '0.065';
use base qw(Crypt::Cipher);
diff --git a/lib/Crypt/Cipher/IDEA.pm b/lib/Crypt/Cipher/IDEA.pm
index 2a296bb7..393898aa 100644
--- a/lib/Crypt/Cipher/IDEA.pm
+++ b/lib/Crypt/Cipher/IDEA.pm
@@ -4,7 +4,7 @@ package Crypt::Cipher::IDEA;
use strict;
use warnings;
-our $VERSION = '0.064_001';
+our $VERSION = '0.065';
use base qw(Crypt::Cipher);
diff --git a/lib/Crypt/Cipher/KASUMI.pm b/lib/Crypt/Cipher/KASUMI.pm
index 3aa6130a..d81c090f 100644
--- a/lib/Crypt/Cipher/KASUMI.pm
+++ b/lib/Crypt/Cipher/KASUMI.pm
@@ -4,7 +4,7 @@ package Crypt::Cipher::KASUMI;
use strict;
use warnings;
-our $VERSION = '0.064_001';
+our $VERSION = '0.065';
use base qw(Crypt::Cipher);
diff --git a/lib/Crypt/Cipher/Khazad.pm b/lib/Crypt/Cipher/Khazad.pm
index 02b40418..10844c41 100644
--- a/lib/Crypt/Cipher/Khazad.pm
+++ b/lib/Crypt/Cipher/Khazad.pm
@@ -4,7 +4,7 @@ package Crypt::Cipher::Khazad;
use strict;
use warnings;
-our $VERSION = '0.064_001';
+our $VERSION = '0.065';
use base qw(Crypt::Cipher);
diff --git a/lib/Crypt/Cipher/MULTI2.pm b/lib/Crypt/Cipher/MULTI2.pm
index 3ed17b52..7673f2c5 100644
--- a/lib/Crypt/Cipher/MULTI2.pm
+++ b/lib/Crypt/Cipher/MULTI2.pm
@@ -4,7 +4,7 @@ package Crypt::Cipher::MULTI2;
use strict;
use warnings;
-our $VERSION = '0.064_001';
+our $VERSION = '0.065';
use base qw(Crypt::Cipher);
diff --git a/lib/Crypt/Cipher/Noekeon.pm b/lib/Crypt/Cipher/Noekeon.pm
index 6b9f6fe1..29d3fec5 100644
--- a/lib/Crypt/Cipher/Noekeon.pm
+++ b/lib/Crypt/Cipher/Noekeon.pm
@@ -4,7 +4,7 @@ package Crypt::Cipher::Noekeon;
use strict;
use warnings;
-our $VERSION = '0.064_001';
+our $VERSION = '0.065';
use base qw(Crypt::Cipher);
diff --git a/lib/Crypt/Cipher/RC2.pm b/lib/Crypt/Cipher/RC2.pm
index 42b19b0c..28aa9708 100644
--- a/lib/Crypt/Cipher/RC2.pm
+++ b/lib/Crypt/Cipher/RC2.pm
@@ -4,7 +4,7 @@ package Crypt::Cipher::RC2;
use strict;
use warnings;
-our $VERSION = '0.064_001';
+our $VERSION = '0.065';
use base qw(Crypt::Cipher);
diff --git a/lib/Crypt/Cipher/RC5.pm b/lib/Crypt/Cipher/RC5.pm
index 19b02c2f..2bf2ce54 100644
--- a/lib/Crypt/Cipher/RC5.pm
+++ b/lib/Crypt/Cipher/RC5.pm
@@ -4,7 +4,7 @@ package Crypt::Cipher::RC5;
use strict;
use warnings;
-our $VERSION = '0.064_001';
+our $VERSION = '0.065';
use base qw(Crypt::Cipher);
diff --git a/lib/Crypt/Cipher/RC6.pm b/lib/Crypt/Cipher/RC6.pm
index e581f26c..6de06805 100644
--- a/lib/Crypt/Cipher/RC6.pm
+++ b/lib/Crypt/Cipher/RC6.pm
@@ -4,7 +4,7 @@ package Crypt::Cipher::RC6;
use strict;
use warnings;
-our $VERSION = '0.064_001';
+our $VERSION = '0.065';
use base qw(Crypt::Cipher);
diff --git a/lib/Crypt/Cipher/SAFERP.pm b/lib/Crypt/Cipher/SAFERP.pm
index b2da4f3b..b1943a9a 100644
--- a/lib/Crypt/Cipher/SAFERP.pm
+++ b/lib/Crypt/Cipher/SAFERP.pm
@@ -4,7 +4,7 @@ package Crypt::Cipher::SAFERP;
use strict;
use warnings;
-our $VERSION = '0.064_001';
+our $VERSION = '0.065';
use base qw(Crypt::Cipher);
diff --git a/lib/Crypt/Cipher/SAFER_K128.pm b/lib/Crypt/Cipher/SAFER_K128.pm
index 97c893b3..a3771e44 100644
--- a/lib/Crypt/Cipher/SAFER_K128.pm
+++ b/lib/Crypt/Cipher/SAFER_K128.pm
@@ -4,7 +4,7 @@ package Crypt::Cipher::SAFER_K128;
use strict;
use warnings;
-our $VERSION = '0.064_001';
+our $VERSION = '0.065';
use base qw(Crypt::Cipher);
diff --git a/lib/Crypt/Cipher/SAFER_K64.pm b/lib/Crypt/Cipher/SAFER_K64.pm
index 0681cba2..934f2826 100644
--- a/lib/Crypt/Cipher/SAFER_K64.pm
+++ b/lib/Crypt/Cipher/SAFER_K64.pm
@@ -4,7 +4,7 @@ package Crypt::Cipher::SAFER_K64;
use strict;
use warnings;
-our $VERSION = '0.064_001';
+our $VERSION = '0.065';
use base qw(Crypt::Cipher);
diff --git a/lib/Crypt/Cipher/SAFER_SK128.pm b/lib/Crypt/Cipher/SAFER_SK128.pm
index 52c86128..27780059 100644
--- a/lib/Crypt/Cipher/SAFER_SK128.pm
+++ b/lib/Crypt/Cipher/SAFER_SK128.pm
@@ -4,7 +4,7 @@ package Crypt::Cipher::SAFER_SK128;
use strict;
use warnings;
-our $VERSION = '0.064_001';
+our $VERSION = '0.065';
use base qw(Crypt::Cipher);
diff --git a/lib/Crypt/Cipher/SAFER_SK64.pm b/lib/Crypt/Cipher/SAFER_SK64.pm
index b47e881c..08252fd1 100644
--- a/lib/Crypt/Cipher/SAFER_SK64.pm
+++ b/lib/Crypt/Cipher/SAFER_SK64.pm
@@ -4,7 +4,7 @@ package Crypt::Cipher::SAFER_SK64;
use strict;
use warnings;
-our $VERSION = '0.064_001';
+our $VERSION = '0.065';
use base qw(Crypt::Cipher);
diff --git a/lib/Crypt/Cipher/SEED.pm b/lib/Crypt/Cipher/SEED.pm
index 4400d292..0d029987 100644
--- a/lib/Crypt/Cipher/SEED.pm
+++ b/lib/Crypt/Cipher/SEED.pm
@@ -4,7 +4,7 @@ package Crypt::Cipher::SEED;
use strict;
use warnings;
-our $VERSION = '0.064_001';
+our $VERSION = '0.065';
use base qw(Crypt::Cipher);
diff --git a/lib/Crypt/Cipher/Serpent.pm b/lib/Crypt/Cipher/Serpent.pm
index df08b266..4a496bf3 100644
--- a/lib/Crypt/Cipher/Serpent.pm
+++ b/lib/Crypt/Cipher/Serpent.pm
@@ -4,7 +4,7 @@ package Crypt::Cipher::Serpent;
use strict;
use warnings;
-our $VERSION = '0.064_001';
+our $VERSION = '0.065';
use base qw(Crypt::Cipher);
diff --git a/lib/Crypt/Cipher/Skipjack.pm b/lib/Crypt/Cipher/Skipjack.pm
index ebd1d29b..cce073a1 100644
--- a/lib/Crypt/Cipher/Skipjack.pm
+++ b/lib/Crypt/Cipher/Skipjack.pm
@@ -4,7 +4,7 @@ package Crypt::Cipher::Skipjack;
use strict;
use warnings;
-our $VERSION = '0.064_001';
+our $VERSION = '0.065';
use base qw(Crypt::Cipher);
diff --git a/lib/Crypt/Cipher/Twofish.pm b/lib/Crypt/Cipher/Twofish.pm
index 699a45fd..82fbeafc 100644
--- a/lib/Crypt/Cipher/Twofish.pm
+++ b/lib/Crypt/Cipher/Twofish.pm
@@ -4,7 +4,7 @@ package Crypt::Cipher::Twofish;
use strict;
use warnings;
-our $VERSION = '0.064_001';
+our $VERSION = '0.065';
use base qw(Crypt::Cipher);
diff --git a/lib/Crypt/Cipher/XTEA.pm b/lib/Crypt/Cipher/XTEA.pm
index d4d04447..8a01c0bc 100644
--- a/lib/Crypt/Cipher/XTEA.pm
+++ b/lib/Crypt/Cipher/XTEA.pm
@@ -4,7 +4,7 @@ package Crypt::Cipher::XTEA;
use strict;
use warnings;
-our $VERSION = '0.064_001';
+our $VERSION = '0.065';
use base qw(Crypt::Cipher);