Sync up ID attribute handling to latest tooling changes.
[shibboleth/cpp-opensaml.git] / saml / signature / ContentReference.cpp
1 /*\r
2  *  Copyright 2001-2006 Internet2\r
3  * \r
4  * Licensed under the Apache License, Version 2.0 (the "License");\r
5  * you may not use this file except in compliance with the License.\r
6  * You may obtain a copy of the License at\r
7  *\r
8  *     http://www.apache.org/licenses/LICENSE-2.0\r
9  *\r
10  * Unless required by applicable law or agreed to in writing, software\r
11  * distributed under the License is distributed on an "AS IS" BASIS,\r
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\r
13  * See the License for the specific language governing permissions and\r
14  * limitations under the License.\r
15  */\r
16 \r
17 /**\r
18  * ContentReference.cpp\r
19  * \r
20  * SAML-specific signature reference profile \r
21  */\r
22  \r
23 #include "internal.h"\r
24 #include "signature/ContentReference.h"\r
25 #include "signature/SignableObject.h"\r
26 \r
27 #include <xmltooling/signature/Signature.h>\r
28 #include <xercesc/util/XMLUniDefs.hpp>\r
29 #include <xsec/dsig/DSIGReference.hpp>\r
30 #include <xsec/dsig/DSIGTransformC14n.hpp>\r
31 \r
32 using namespace opensaml;\r
33 using namespace std;\r
34 \r
35 class _addprefix : public binary_function<DSIGTransformC14n*,string,void> {\r
36 public:\r
37     void operator()(DSIGTransformC14n* t, const string& s) const {\r
38         if (s.empty())\r
39             t->addInclusiveNamespace("#default");\r
40         else \r
41             t->addInclusiveNamespace(s.c_str());\r
42     }\r
43 };\r
44 \r
45 void ContentReference::createReferences(DSIGSignature* sig)\r
46 {\r
47     const XMLCh* id=m_signableObject.getXMLID();\r
48     if (!id || !*id)\r
49         throw xmlsignature::SignatureException("Cannot create Signature reference to SAML object without an identifier."); \r
50     \r
51     DSIGReference* ref=NULL;\r
52     XMLCh* buf=new XMLCh[XMLString::stringLen(id) + 2];\r
53     buf[0]=chPound;\r
54     buf[1]=chNull;\r
55     XMLString::catString(buf,id);\r
56     try {\r
57         ref=sig->createReference(buf);\r
58         delete[] buf;\r
59     }\r
60     catch(...) {\r
61         delete[] buf;\r
62         throw;\r
63     }\r
64     ref->appendEnvelopedSignatureTransform();\r
65     DSIGTransformC14n* c14n=ref->appendCanonicalizationTransform(CANON_C14NE_NOC);\r
66     for_each(m_prefixes.begin(), m_prefixes.end(), bind1st(_addprefix(),c14n));\r
67 }\r