Skip to content

Commit 7df74f0

Browse files
authored
Merge pull request #8 from waterkip/GL-eherkenning-decryption
Refactor the decrypt function
2 parents 5115344 + 4c5099e commit 7df74f0

File tree

5 files changed

+355
-230
lines changed

5 files changed

+355
-230
lines changed

Makefile.PL

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,7 @@ my %WriteMakefileArgs = (
2424
"Crypt::PRNG" => 0,
2525
"MIME::Base64" => 0,
2626
"XML::LibXML" => 0,
27+
"feature" => 0,
2728
"strict" => 0,
2829
"vars" => 0,
2930
"warnings" => 0
@@ -38,7 +39,7 @@ my %WriteMakefileArgs = (
3839
"Test::More" => 0,
3940
"namespace::autoclean" => 0
4041
},
41-
"VERSION" => "0.11",
42+
"VERSION" => "0.12",
4243
"test" => {
4344
"TESTS" => "t/*.t"
4445
}
@@ -61,6 +62,7 @@ my %FallbackPrereqs = (
6162
"Test::Lib" => 0,
6263
"Test::More" => 0,
6364
"XML::LibXML" => 0,
65+
"feature" => 0,
6466
"namespace::autoclean" => 0,
6567
"strict" => 0,
6668
"vars" => 0,

README

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ NAME
22
XML::Enc - XML::Enc Encryption Support
33

44
VERSION
5-
version 0.11
5+
version 0.12
66

77
SYNOPSIS
88
my $decrypter = XML::Enc->new(

cpanfile

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ requires "Crypt::PK::RSA" => "0";
88
requires "Crypt::PRNG" => "0";
99
requires "MIME::Base64" => "0";
1010
requires "XML::LibXML" => "0";
11+
requires "feature" => "0";
1112
requires "perl" => "5.008";
1213
requires "strict" => "0";
1314
requires "vars" => "0";

0 commit comments

Comments
 (0)