-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add schema for SAML 2.0 Metadata Profile for Algorithm Support Versio…
…n 1.0.
- Loading branch information
Showing
1 changed file
with
43 additions
and
0 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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,43 @@ | ||
| <?xml version="1.0" encoding="UTF-8"?> | ||
| <schema | ||
| targetNamespace="urn:oasis:names:tc:SAML:metadata:algsupport" | ||
| xmlns="http://www.w3.org/2001/XMLSchema" | ||
| xmlns:alg="urn:oasis:names:tc:SAML:metadata:algsupport" | ||
| elementFormDefault="unqualified" | ||
| attributeFormDefault="unqualified" | ||
| blockDefault="substitution" | ||
| version="1.0"> | ||
|
|
||
| <annotation> | ||
| <documentation> | ||
| Document title: Metadata Extension Schema for SAML V2.0 Metadata Profile for Algorithm Support Version 1.0 | ||
| Document identifier: sstc-saml-metadata-algsupport.xsd | ||
| Location: http://docs.oasis-open.org/security/saml/Post2.0/ | ||
| Revision history: | ||
| V1.0 (June 2010): | ||
| Initial version. | ||
| (October 2010): | ||
| Add processContents="lax" to wildcards. | ||
| </documentation> | ||
| </annotation> | ||
|
|
||
| <element name="DigestMethod" type="alg:DigestMethodType"/> | ||
| <complexType name="DigestMethodType"> | ||
| <sequence> | ||
| <any namespace="##any" processContents="lax" minOccurs="0" maxOccurs="unbounded"/> | ||
| </sequence> | ||
| <attribute name="Algorithm" type="anyURI" use="required"/> | ||
| </complexType> | ||
|
|
||
| <element name="SigningMethod" type="alg:SigningMethodType"/> | ||
| <complexType name="SigningMethodType"> | ||
| <sequence> | ||
| <any namespace="##any" processContents="lax" minOccurs="0" maxOccurs="unbounded"/> | ||
| </sequence> | ||
| <attribute name="Algorithm" type="anyURI" use="required"/> | ||
| <attribute name="MinKeySize" type="positiveInteger"/> | ||
| <attribute name="MaxKeySize" type="positiveInteger"/> | ||
| </complexType> | ||
|
|
||
| </schema> | ||
|
|