~ubuntu-branches/ubuntu/natty/xml-security-c/natty-security

« back to all changes in this revision

Viewing changes to src/dsig/DSIGSignedInfo.cpp

  • Committer: Bazaar Package Importer
  • Author(s): Russ Allbery
  • Date: 2009-08-05 14:11:52 UTC
  • mfrom: (1.1.3 upstream)
  • Revision ID: james.westby@ubuntu.com-20090805141152-a7xyrgur2sq3exkr
Tags: 1.5.1-1
* New upstream release.
  - Rename library package for upstream SONAME bump.
* Upstream now ships an older version of libtool, so run libtoolize and
  aclocal before the build.  Add build dependencies on automake and
  libtool.
* Build against Xerces-C 3.0.
* Stop building against Xalan.  The Xalan packages for Debian have been
  orphaned, the current Xalan release does not support Xerces-C 3.0, and
  porting it is not trivial.

Show diffs side-by-side

added added

removed removed

Lines of Context:
19
19
 *
20
20
 * DSIGSignedInfo := Class for checking and setting up signed Info nodes in a DSIG signature
21
21
 *
22
 
 * $Id: DSIGSignedInfo.cpp 450747 2006-09-28 07:54:22Z blautenb $
 
22
 * $Id: DSIGSignedInfo.cpp 793085 2009-07-10 19:30:57Z scantor $
23
23
 *
24
24
 */
25
25
 
323
323
 
324
324
        }
325
325
 
326
 
        else if (tmpSB.sbStrcmp(URI_ID_EXC_C14N_COM) == 0) {
 
326
        else if (tmpSB.sbStrcmp(URI_ID_C14N11_NOC) == 0) {
 
327
 
 
328
        m_canonicalizationMethod = CANON_C14N11_NOC;
 
329
 
 
330
    }
 
331
 
 
332
    else if (tmpSB.sbStrcmp(URI_ID_C14N11_COM) == 0) {
 
333
 
 
334
        m_canonicalizationMethod = CANON_C14N11_COM;
 
335
 
 
336
    }
 
337
 
 
338
    else if (tmpSB.sbStrcmp(URI_ID_EXC_C14N_COM) == 0) {
327
339
 
328
340
                m_canonicalizationMethod = CANON_C14NE_COM;
329
341