Skip to content

Commit 894b08c

Browse files
committed
Update Version and README for release
1 parent 4a7ff19 commit 894b08c

File tree

3 files changed

+3
-11
lines changed

3 files changed

+3
-11
lines changed

Makefile.PL

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ my %WriteMakefileArgs = (
3333
"File::Which" => 0,
3434
"Test::More" => 0
3535
},
36-
"VERSION" => "0.02",
36+
"VERSION" => "0.03",
3737
"test" => {
3838
"TESTS" => "t/*.t"
3939
}

README

Lines changed: 1 addition & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -2,14 +2,13 @@ NAME
22
XML::Enc - XML::Enc Encryption Support
33

44
VERSION
5-
version 0.02
5+
version 0.03
66

77
SYNOPSIS
88
my $decrypter = XML::Enc->new(
99
{
1010
key => 't/sign-private.pem',
1111
no_xml_declaration => 1,
12-
force_element_to_content => 0,
1312
},
1413
);
1514
$decrypted = $enc->decrypt($xml);
@@ -80,13 +79,6 @@ METHODS
8079
<https://www.w3.org/TR/2002/REC-xmlenc-core-20021210/Overview.ht
8180
ml#rsa-oaep-mgf1p>
8281

83-
force_element_to_content
84-
Used for decryption to treat an Element EncryptedData type as
85-
Content if the decrypted data is not XML. xmlsec appears to have a
86-
bug where it uses the Element EncryptedData type in order to encrypt
87-
what is actually Content. Strangely it appears to have no issue
88-
decrypting the data if the Type is changed to Content
89-
9082
decrypt( ... )
9183
Main decryption function.
9284

lib/XML/Enc.pm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ use Crypt::Random qw( makerandom_octet );
1414

1515
use vars qw($VERSION @EXPORT_OK %EXPORT_TAGS $DEBUG);
1616

17-
our $VERSION = '0.02';
17+
our $VERSION = '0.03';
1818

1919
our $DEBUG = 0;
2020

0 commit comments

Comments
 (0)