-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #83 from maykinmedia/issue/4785-eherkenning-metadata
Fix eherkenning metadata
- Loading branch information
Showing
13 changed files
with
443 additions
and
166 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
33 changes: 33 additions & 0 deletions
33
...enning/migrations/0013_alter_eherkenningconfiguration_eh_requested_attributes_and_more.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
# Generated by Django 4.2.13 on 2024-12-18 14:58 | ||
|
||
from django.db import migrations, models | ||
|
||
|
||
class Migration(migrations.Migration): | ||
|
||
dependencies = [ | ||
("digid_eherkenning", "0012_move_config_certificate"), | ||
] | ||
|
||
operations = [ | ||
migrations.AlterField( | ||
model_name="eherkenningconfiguration", | ||
name="eh_requested_attributes", | ||
field=models.JSONField( | ||
blank=True, | ||
default=list, | ||
help_text="A list of additional requested attributes. A single requested attribute can be a string (the name of the attribute) or an object with keys 'name' and 'required', where 'name' is a string and 'required' a boolean'.", | ||
verbose_name="requested attributes", | ||
), | ||
), | ||
migrations.AlterField( | ||
model_name="eherkenningconfiguration", | ||
name="eidas_requested_attributes", | ||
field=models.JSONField( | ||
blank=True, | ||
default=list, | ||
help_text="A list of additional requested attributes. A single requested attribute can be a string (the name of the attribute) or an object with keys 'name' and 'required', where 'name' is a string and 'required' a boolean'.", | ||
verbose_name="requested attributes", | ||
), | ||
), | ||
] |
48 changes: 48 additions & 0 deletions
48
...d_eherkenning/migrations/0014_alter_eherkenningconfiguration_digest_algorithm_and_more.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,48 @@ | ||
# Generated by Django 4.2.13 on 2024-12-19 10:11 | ||
|
||
from django.db import migrations, models | ||
|
||
|
||
class Migration(migrations.Migration): | ||
|
||
dependencies = [ | ||
( | ||
"digid_eherkenning", | ||
"0013_alter_eherkenningconfiguration_eh_requested_attributes_and_more", | ||
), | ||
] | ||
|
||
operations = [ | ||
migrations.AlterField( | ||
model_name="eherkenningconfiguration", | ||
name="digest_algorithm", | ||
field=models.CharField( | ||
blank=True, | ||
choices=[ | ||
("http://www.w3.org/2001/04/xmlenc#sha256", "SHA256"), | ||
("http://www.w3.org/2001/04/xmldsig-more#sha384", "SHA384"), | ||
("http://www.w3.org/2001/04/xmlenc#sha512", "SHA512"), | ||
], | ||
default="http://www.w3.org/2001/04/xmlenc#sha256", | ||
help_text="Digest algorithm. Note that SHA1 is deprecated, but still the default value in the SAMLv2 standard. Warning: there are known issues with single-logout functionality if using anything other than SHA1 due to some hardcoded algorithm.", | ||
max_length=100, | ||
verbose_name="digest algorithm", | ||
), | ||
), | ||
migrations.AlterField( | ||
model_name="eherkenningconfiguration", | ||
name="signature_algorithm", | ||
field=models.CharField( | ||
blank=True, | ||
choices=[ | ||
("http://www.w3.org/2001/04/xmldsig-more#rsa-sha256", "RSA_SHA256"), | ||
("http://www.w3.org/2001/04/xmldsig-more#rsa-sha384", "RSA_SHA384"), | ||
("http://www.w3.org/2001/04/xmldsig-more#rsa-sha512", "RSA_SHA512"), | ||
], | ||
default="http://www.w3.org/2001/04/xmldsig-more#rsa-sha256", | ||
help_text="Signature algorithm. Note that DSA_SHA1 and RSA_SHA1 are deprecated, but RSA_SHA1 is still the default value in the SAMLv2 standard. Warning: there are known issues with single-logout functionality if using anything other than SHA1 due to some hardcoded algorithm.", | ||
max_length=100, | ||
verbose_name="signature algorithm", | ||
), | ||
), | ||
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.