File tree Expand file tree Collapse file tree 2 files changed +27
-27
lines changed Expand file tree Collapse file tree 2 files changed +27
-27
lines changed Original file line number Diff line number Diff line change 22 XML::Enc - XML::Enc Encryption Support
33
44VERSION
5- version 0.12
5+ version 0.13
66
77SYNOPSIS
88 my $decrypter = XML::Enc->new(
9- {
10- key => 't/sign-private.pem',
11- no_xml_declaration => 1,
12- },
13- );
9+ {
10+ key => 't/sign-private.pem',
11+ no_xml_declaration => 1,
12+ },
13+ );
1414 $decrypted = $enc->decrypt($xml);
1515
1616 my $encrypter = XML::Enc->new(
17- {
18- cert => 't/sign-certonly.pem',
19- no_xml_declaration => 1,
20- data_enc_method => 'aes256-cbc',
21- key_transport => 'rsa-1_5',
22-
23- },
24- );
17+ {
18+ cert => 't/sign-certonly.pem',
19+ no_xml_declaration => 1,
20+ data_enc_method => 'aes256-cbc',
21+ key_transport => 'rsa-1_5',
22+
23+ },
24+ );
2525 $encrypted = $enc->encrypt($xml);
2626
2727NAME
Original file line number Diff line number Diff line change @@ -27,22 +27,22 @@ XML::Enc - XML Encryption
2727=head1 SYNOPSIS
2828
2929 my $decrypter = XML::Enc->new(
30- {
31- key => 't/sign-private.pem',
32- no_xml_declaration => 1,
33- },
34- );
30+ {
31+ key => 't/sign-private.pem',
32+ no_xml_declaration => 1,
33+ },
34+ );
3535 $decrypted = $enc->decrypt($xml);
3636
3737 my $encrypter = XML::Enc->new(
38- {
39- cert => 't/sign-certonly.pem',
40- no_xml_declaration => 1,
41- data_enc_method => 'aes256-cbc',
42- key_transport => 'rsa-1_5',
43-
44- },
45- );
38+ {
39+ cert => 't/sign-certonly.pem',
40+ no_xml_declaration => 1,
41+ data_enc_method => 'aes256-cbc',
42+ key_transport => 'rsa-1_5',
43+
44+ },
45+ );
4646 $encrypted = $enc->encrypt($xml);
4747
4848=head1 METHODS
You can’t perform that action at this time.
0 commit comments