File tree Expand file tree Collapse file tree 4 files changed +9
-5
lines changed Expand file tree Collapse file tree 4 files changed +9
-5
lines changed Original file line number Diff line number Diff line change @@ -41,7 +41,7 @@ my %WriteMakefileArgs = (
4141 " URI" => 0,
4242 " URI::Encode" => 0,
4343 " URI::QueryParam" => 0,
44- " XML::Enc" => " 0.03 " ,
44+ " XML::Enc" => " 0.05 " ,
4545 " XML::Generator" => 0,
4646 " XML::LibXML" => 0,
4747 " XML::LibXML::XPathContext" => 0,
@@ -113,7 +113,7 @@ my %FallbackPrereqs = (
113113 " URI::Encode" => 0,
114114 " URI::QueryParam" => 0,
115115 " URI::URL" => 0,
116- " XML::Enc" => " 0.03 " ,
116+ " XML::Enc" => " 0.05 " ,
117117 " XML::Generator" => 0,
118118 " XML::LibXML" => 0,
119119 " XML::LibXML::XPathContext" => 0,
Original file line number Diff line number Diff line change @@ -61,7 +61,9 @@ SYNOPSIS
6161
6262 if ($ret) {
6363 my $assertion = Net::SAML2::Protocol::Assertion->new_from_xml(
64- xml => decode_base64($saml_response)
64+ xml => decode_base64($saml_response),
65+ key_file => "SP-Private-Key.pem", # Required for EncryptedAssertions
66+ cacert => "IdP-cacert.pem", # Required for EncryptedAssertions
6567 );
6668
6769 # ...
@@ -81,6 +83,9 @@ DESCRIPTION
8183 Keycloak
8284 Auth0 (requires Net::SAML2 >=0.39)
8385 PingIdentity
86+ Version 0.54 and newer support EncryptedAssertions. No changes
87+ required to existing SP applications if EncryptedAssertions are not
88+ in use.
8489
8590NAME
8691 Net::SAML2 - SAML bindings and protocol implementation
Original file line number Diff line number Diff line change @@ -25,7 +25,7 @@ requires "MooseX::Types::URI" => "0";
2525requires " URI" => " 0" ;
2626requires " URI::Encode" => " 0" ;
2727requires " URI::QueryParam" => " 0" ;
28- requires " XML::Enc" => " 0.03 " ;
28+ requires " XML::Enc" => " 0.05 " ;
2929requires " XML::Generator" => " 0" ;
3030requires " XML::LibXML" => " 0" ;
3131requires " XML::LibXML::XPathContext" => " 0" ;
Original file line number Diff line number Diff line change 11use strict;
22use warnings;
33
4- use utf8;
54use Test::Lib;
65use Test::Net::SAML2;
76
You can’t perform that action at this time.
0 commit comments