blob: 0d6bb44ce08236e41a5b948fad190450050f79f2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
|
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE test [
<!ATTLIST EncryptedKey Id ID #IMPLIED>
]>
<PurchaseOrder xmlns="urn:example:po">
<Items>
<Item Code="001-001-001" Quantity="1">
spade
</Item>
<Item Code="001-001-002" Quantity="1">
shovel
</Item>
</Items>
<ShippingAddress>
Dig PLC, 1 First Ave, Dublin 1, Ireland
</ShippingAddress>
<PaymentInfo>
<BillingAddress>
Dig PLC, 1 First Ave, Dublin 1, Ireland
</BillingAddress>
<CreditCard Type="Amex">
<Name>Foo B Baz</Name>
<Number>1234 567890 12345</Number>
<Expires Month="1" Year="2005"/>
</CreditCard>
</PaymentInfo>
<KeyInfo xmlns="http://www.w3.org/2000/09/xmldsig#">
<EncryptedKey xmlns="http://www.w3.org/2001/04/xmlenc#" Id="encrypt-key-0">
<EncryptionMethod Algorithm="http://www.w3.org/2001/04/xmlenc#kw-aes256"/>
<KeyInfo xmlns="http://www.w3.org/2000/09/xmldsig#">
<KeyName>jed</KeyName>
</KeyInfo>
<CipherData>
<CipherValue>
bsL63D0hPN6EOyzdgfEmKsAAvoJiGM+Wp9a9KZM92IKdl7s3YSntRg==
</CipherValue>
</CipherData>
</EncryptedKey>
</KeyInfo>
</PurchaseOrder>
|