This repository has been archived on 2024-05-31. You can view files and clone it, but cannot push or open issues or pull requests.
2018-11-16 08:10:35 +00:00
|
|
|
<saml:Assertion xmlns:saml="urn:oasis:names:tc:SAML:2.0:assertion"
|
|
|
|
ID="{{ ASSERTION_ID }}"
|
|
|
|
IssueInstant="{{ ISSUE_INSTANT }}"
|
|
|
|
Version="2.0">
|
|
|
|
<saml:Issuer xmlns:saml="urn:oasis:names:tc:SAML:2.0:assertion">{{ ISSUER }}</saml:Issuer>
|
|
|
|
{% include 'saml/xml/signature.xml' %}
|
|
|
|
{{ SUBJECT_STATEMENT }}
|
2018-12-26 20:56:08 +00:00
|
|
|
<saml:Conditions NotBefore="{{ NOT_BEFORE }}" NotOnOrAfter="{{ NOT_ON_OR_AFTER }}">
|
2018-11-16 08:10:35 +00:00
|
|
|
<saml:AudienceRestriction>
|
|
|
|
<saml:Audience>{{ AUDIENCE }}</saml:Audience>
|
|
|
|
</saml:AudienceRestriction>
|
|
|
|
</saml:Conditions>
|
2018-12-26 20:56:08 +00:00
|
|
|
<saml:AuthnStatement AuthnInstant="{{ NOT_BEFORE }}" SessionIndex="{{ ASSERTION_ID }}">
|
2018-11-16 08:10:35 +00:00
|
|
|
<saml:AuthnContext>
|
2018-12-26 20:56:08 +00:00
|
|
|
<saml:AuthnContextClassRef>urn:oasis:names:tc:SAML:2.0:ac:classes:PasswordProtectedTransport</saml:AuthnContextClassRef>
|
2018-11-16 08:10:35 +00:00
|
|
|
</saml:AuthnContext>
|
|
|
|
</saml:AuthnStatement>
|
|
|
|
{{ ATTRIBUTE_STATEMENT }}
|
|
|
|
</saml:Assertion>
|