We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b167bf3 commit 851bbadCopy full SHA for 851bbad
tests/idp_test/target_idp.py
@@ -72,6 +72,23 @@
72
],
73
"metadata": metadata,
74
"name_format": NAME_FORMAT_URI
75
+ "constraints": {
76
+ "signature_algorithm": [ # allowed for assertion & response signature
77
+ ds.SIG_RSA_SHA1,
78
+ ds.SIG_RSA_SHA224,
79
+ ds.SIG_RSA_SHA256,
80
+ ds.SIG_RSA_SHA384,
81
+ ds.SIG_RSA_SHA512,
82
+ ],
83
+ "digest_algorithm": [
84
+ ds.DIGEST_SHA1,
85
+ ds.DIGEST_SHA224,
86
+ ds.DIGEST_SHA256,
87
+ ds.DIGEST_SHA384,
88
+ ds.DIGEST_SHA512,
89
+ ds.DIGEST_RIPEMD160,
90
91
+ }
92
}
93
94
print json.dumps(info)
0 commit comments