Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion lib/WeBWorK/Authen/Saml2.pm
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,8 @@ sub do_verify ($self) {
->handle_response($c->stash->{saml2}{samlResp});
my $assertion = Net::SAML2::Protocol::Assertion->new_from_xml(
xml => $decodedXml,
key_file => $self->spKeyFile->to_string
key_file => $self->spKeyFile->to_string,
cacert => $idpCertificateFile->to_string
);

# Get the database key containing the authReqId that was generated before redirecting to the identity provider.
Expand Down