Skip to content

Commit e01b146

Browse files
committed
Document the wantAssertionsEncrypted parameter
1 parent 2461c36 commit e01b146

4 files changed

Lines changed: 8 additions & 1 deletion

File tree

README.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -360,6 +360,10 @@ In addition to the required settings data (idp, sp), there is extra information
360360
// and <samlp:LogoutResponse> elements received by this SP to be signed.
361361
"wantMessagesSigned": false,
362362

363+
// this SP to be encrypted.
364+
'wantAssertionsEncrypted' => false,
365+
366+
// Indicates a requirement for the <saml:Assertion> elements received by
363367
// Indicates a requirement for the <saml:Assertion> elements received by
364368
// this SP to be signed. [Metadata of the SP will offer this info]
365369
"wantAssertionsSigned": false,

demo-bottle/saml/advanced_settings.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,8 @@
99
"wantAssertionsSigned": false,
1010
"wantNameId" : true,
1111
"wantNameIdEncrypted": false,
12-
"signatureAlgorithm": "http://www.w3.org/2000/09/xmldsig#rsa-sha1"
12+
"wantAssertionsEncrypted": false,
13+
"signatureAlgorithm": "http://www.w3.org/2000/09/xmldsig#rsa-sha1"
1314
},
1415
"contactPerson": {
1516
"technical": {

demo-django/saml/advanced_settings.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@
99
"wantAssertionsSigned": false,
1010
"wantNameId" : true,
1111
"wantNameIdEncrypted": false,
12+
"wantAssertionsEncrypted": false,
1213
"signatureAlgorithm": "http://www.w3.org/2000/09/xmldsig#rsa-sha1"
1314
},
1415
"contactPerson": {

demo-flask/saml/advanced_settings.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@
99
"wantAssertionsSigned": false,
1010
"wantNameId" : true,
1111
"wantNameIdEncrypted": false,
12+
"wantAssertionsEncrypted": false,
1213
"signatureAlgorithm": "http://www.w3.org/2000/09/xmldsig#rsa-sha1"
1314
},
1415
"contactPerson": {

0 commit comments

Comments
 (0)