e77052b810a76dc75e6c72ccfd084defb95aeac5
[shibboleth/cpp-opensaml.git] / saml / signature / SigningContext.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  * SigningContext.cpp\r
19  * \r
20  * SAML-specific signature construction \r
21  */\r
22  \r
23 #include "internal.h"\r
24 #include "signature/SigningContext.h"\r
25 \r
26 #include <xercesc/util/XMLUniDefs.hpp>\r
27 #include <xsec/dsig/DSIGReference.hpp>\r
28 #include <xsec/dsig/DSIGTransformC14n.hpp>\r
29 \r
30 using namespace opensaml;\r
31 using namespace std;\r
32 \r
33 class _addprefix : public binary_function<DSIGTransformC14n*,string,void> {\r
34 public:\r
35     void operator()(DSIGTransformC14n* t, const string& s) const {\r
36         if (s.empty())\r
37             t->addInclusiveNamespace("#default");\r
38         else \r
39             t->addInclusiveNamespace(s.c_str());\r
40     }\r
41 };\r
42 \r
43 bool SigningContext::createSignature(DSIGSignature* sig)\r
44 {\r
45     DSIGReference* ref=NULL;\r
46     XMLCh* buf=new XMLCh[XMLString::stringLen(m_id) + 2];\r
47     buf[0]=chPound;\r
48     buf[1]=chNull;\r
49     XMLString::catString(buf,m_id);\r
50     try {\r
51         ref=sig->createReference(buf);\r
52         delete[] buf;\r
53     }\r
54     catch(...) {\r
55         delete[] buf;\r
56         throw;\r
57     }\r
58     ref->appendEnvelopedSignatureTransform();\r
59     DSIGTransformC14n* c14n=ref->appendCanonicalizationTransform(CANON_C14NE_NOC);\r
60     for_each(m_prefixes.begin(), m_prefixes.end(), bind1st(_addprefix(),c14n));\r
61     \r
62     return false;\r
63 }\r