0N/A<?xml version="1.0" encoding="utf-8"?>
0N/A<!DOCTYPE schema PUBLIC "-//W3C//DTD XMLSchema 200102//EN"
0N/A "http://www.w3.org/2001/XMLSchema.dtd"
0N/A [
0N/A <!ATTLIST schema
0N/A xmlns:xenc CDATA #FIXED 'http://www.w3.org/2001/04/xmlenc#'
0N/A xmlns:ds CDATA #FIXED 'http://www.w3.org/2000/09/xmldsig#'>
0N/A <!ENTITY xenc 'http://www.w3.org/2001/04/xmlenc#'>
0N/A <!ENTITY % p ''>
0N/A <!ENTITY % s ''>
0N/A ]>
0N/A
0N/A<schema xmlns='http://www.w3.org/2001/XMLSchema' version='1.0'
0N/A xmlns:xenc='http://www.w3.org/2001/04/xmlenc#'
0N/A xmlns:ds='http://www.w3.org/2000/09/xmldsig#'
0N/A targetNamespace='http://www.w3.org/2001/04/xmlenc#'
0N/A elementFormDefault='qualified'>
0N/A
0N/A <import namespace='http://www.w3.org/2000/09/xmldsig#'
0N/A schemaLocation='http://www.w3.org/TR/2002/REC-xmldsig-core-20020212/xmldsig-core-schema.xsd'/>
0N/A
0N/A <complexType name='EncryptedType' abstract='true'>
0N/A <sequence>
0N/A <element name='EncryptionMethod' type='xenc:EncryptionMethodType'
0N/A minOccurs='0'/>
0N/A <element ref='ds:KeyInfo' minOccurs='0'/>
0N/A <element ref='xenc:CipherData'/>
0N/A <element ref='xenc:EncryptionProperties' minOccurs='0'/>
0N/A </sequence>
0N/A <attribute name='Id' type='ID' use='optional'/>
0N/A <attribute name='Type' type='anyURI' use='optional'/>
0N/A <attribute name='MimeType' type='string' use='optional'/>
0N/A <attribute name='Encoding' type='anyURI' use='optional'/>
0N/A </complexType>
0N/A
0N/A <complexType name='EncryptionMethodType' mixed='true'>
0N/A <sequence>
0N/A <element name='KeySize' minOccurs='0' type='xenc:KeySizeType'/>
0N/A <element name='OAEPparams' minOccurs='0' type='base64Binary'/>
0N/A <any namespace='##other' minOccurs='0' maxOccurs='unbounded'/>
0N/A </sequence>
0N/A <attribute name='Algorithm' type='anyURI' use='required'/>
0N/A </complexType>
0N/A
0N/A <simpleType name='KeySizeType'>
0N/A <restriction base="integer"/>
0N/A </simpleType>
0N/A
0N/A <element name='CipherData' type='xenc:CipherDataType'/>
0N/A <complexType name='CipherDataType'>
0N/A <choice>
0N/A <element name='CipherValue' type='base64Binary'/>
0N/A <element ref='xenc:CipherReference'/>
0N/A </choice>
0N/A </complexType>
0N/A
0N/A <element name='CipherReference' type='xenc:CipherReferenceType'/>
0N/A <complexType name='CipherReferenceType'>
0N/A <choice>
0N/A <element name='Transforms' type='xenc:TransformsType' minOccurs='0'/>
0N/A </choice>
0N/A <attribute name='URI' type='anyURI' use='required'/>
0N/A </complexType>
0N/A
0N/A <complexType name='TransformsType'>
0N/A <sequence>
0N/A <element ref='ds:Transform' maxOccurs='unbounded'/>
0N/A </sequence>
0N/A </complexType>
0N/A
0N/A
0N/A <element name='EncryptedData' type='xenc:EncryptedDataType'/>
0N/A <complexType name='EncryptedDataType'>
0N/A <complexContent>
0N/A <extension base='xenc:EncryptedType'>
0N/A </extension>
0N/A </complexContent>
0N/A </complexType>
0N/A
0N/A <!-- Children of ds:KeyInfo -->
0N/A
0N/A <element name='EncryptedKey' type='xenc:EncryptedKeyType'/>
0N/A <complexType name='EncryptedKeyType'>
0N/A <complexContent>
0N/A <extension base='xenc:EncryptedType'>
0N/A <sequence>
0N/A <element ref='xenc:ReferenceList' minOccurs='0'/>
0N/A <element name='CarriedKeyName' type='string' minOccurs='0'/>
0N/A </sequence>
0N/A <attribute name='Recipient' type='string'
0N/A use='optional'/>
0N/A </extension>
0N/A </complexContent>
0N/A </complexType>
0N/A
0N/A <element name="AgreementMethod" type="xenc:AgreementMethodType"/>
0N/A <complexType name="AgreementMethodType" mixed="true">
0N/A <sequence>
0N/A <element name="KA-Nonce" minOccurs="0" type="base64Binary"/>
0N/A <!-- <element ref="ds:DigestMethod" minOccurs="0"/> -->
0N/A <any namespace="##other" minOccurs="0" maxOccurs="unbounded"/>
0N/A <element name="OriginatorKeyInfo" minOccurs="0" type="ds:KeyInfoType"/>
0N/A <element name="RecipientKeyInfo" minOccurs="0" type="ds:KeyInfoType"/>
0N/A </sequence>
0N/A <attribute name="Algorithm" type="anyURI" use="required"/>
0N/A </complexType>
0N/A
0N/A <!-- End Children of ds:KeyInfo -->
0N/A
0N/A <element name='ReferenceList'>
0N/A <complexType>
0N/A <choice minOccurs='1' maxOccurs='unbounded'>
0N/A <element name='DataReference' type='xenc:ReferenceType'/>
0N/A <element name='KeyReference' type='xenc:ReferenceType'/>
0N/A </choice>
0N/A </complexType>
0N/A </element>
0N/A
0N/A <complexType name='ReferenceType'>
0N/A <sequence>
0N/A <any namespace='##other' minOccurs='0' maxOccurs='unbounded'/>
0N/A </sequence>
0N/A <attribute name='URI' type='anyURI' use='required'/>
0N/A </complexType>
0N/A
0N/A
0N/A <element name='EncryptionProperties' type='xenc:EncryptionPropertiesType'/>
0N/A <complexType name='EncryptionPropertiesType'>
0N/A <sequence>
0N/A <element ref='xenc:EncryptionProperty' maxOccurs='unbounded'/>
0N/A </sequence>
0N/A <attribute name='Id' type='ID' use='optional'/>
0N/A </complexType>
0N/A
0N/A <element name='EncryptionProperty' type='xenc:EncryptionPropertyType'/>
0N/A <complexType name='EncryptionPropertyType' mixed='true'>
0N/A <choice maxOccurs='unbounded'>
0N/A <any namespace='##other' processContents='lax'/>
0N/A </choice>
0N/A <attribute name='Target' type='anyURI' use='optional'/>
0N/A <attribute name='Id' type='ID' use='optional'/>
0N/A <anyAttribute namespace="http://www.w3.org/XML/1998/namespace"/>
0N/A </complexType>
0N/A
0N/A</schema>
0N/A