<?xml version='1.0'?>
<!DOCTYPE Signature SYSTEM "xmldsig.dtd" [
<!ENTITY dsig "http://www.w3.org/2000/01/xmldsig">
]>
<!--
	Template for an XML Signature over two resources.

	Note that the contents of the DigestValue and SignatureValue elements
	are only pseudo values that need to be updated.
-->
<Signature xmlns="http://www.w3.org/2000/01/xmldsig"> 
  <SignedInfo Id="mypage"> 
	 <CanonicalizationMethod Algorithm="http://www.w3.org/1999/07/WD-xml-c14n-19990729"> 
	 </CanonicalizationMethod>
	 <SignatureMethod Algorithm="&dsig;/dsa"> 
	 </SignatureMethod>
	 <Reference URI="http://www.w3.org/TR/xml-stylesheet/"> 
		<Transforms> 
		  <Transform Algorithm="http://www.w3.org/2000/01/xmldsig/base64" />
		  <Transform Algorithm="http://www.w3.org/2000/01/xmldsig/null" />
		</Transforms> 
		<DigestMethod Algorithm="http://www.w3.org/2000/01/xmldsig/sha1"> 
		</DigestMethod>
		<DigestValue>notARealDigestValue</DigestValue> 
	 </Reference> 
	 <Reference URI="http://www.w3.org/TR/REC-xml-names/"> 
		<Transforms> 
		  <Transform Algorithm="http://www.w3.org/2000/01/xmldsig/base64"/> 
		</Transforms> 
		<DigestMethod Algorithm="http://www.w3.org/2000/01/xmldsig/sha1"> 
		</DigestMethod>
		<DigestValue>notARealDigestValue</DigestValue> 
	 </Reference> 	 
  </SignedInfo> 
  <SignatureValue>notARealSignatureValue</SignatureValue>  
  <KeyInfo> 
	 <KeyName>Solo</KeyName> 
  </KeyInfo>
</Signature> 
