Changeset 1973
- Timestamp:
- 09/01/07 09:40:54 (14 years ago)
- Location:
- TI12-security/trunk/python
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
TI12-security/trunk/python/Tests/xmlsec/Makefile
r1415 r1973 1 PROGRAM = encrypt41 PROGRAM = verify3 2 2 PROGRAM_FILES = $(PROGRAM).c 3 3 VALGRIND_FLAGS=-O0 -O1 4 4 5 PKG_CONFIG_PATH=/usr/local/NDG/lib/pkgconfig 5 #PKG_CONFIG_PATH=/usr/local/lib/pkgconfig/ 6 6 7 7 CFLAGS += -g $(VALGRIND_FLAGS) \ 8 $(shell pkg-config \ 9 --define-variable=prefix=/usr/local/NDG \ 10 --define-variable=libdir=/usr/local/NDG/lib --cflags xmlsec1) 11 LDFLAGS += #-L/usr/local/NDG/lib 12 LIBS += $(shell pkg-config \ 13 --define-variable=prefix=/usr/local/NDG \ 14 --define-variable=libdir=/usr/local/NDG/lib --libs xmlsec1) 8 $(shell pkg-config --cflags xmlsec1) 9 LIBS += $(shell pkg-config --libs xmlsec1) 10 11 #CFLAGS += -g $(VALGRIND_FLAGS) \ 12 #$(shell pkg-config \ 13 #--define-variable=prefix=/usr/local \ 14 #--define-variable=libdir=/usr/local/lib --cflags xmlsec1) 15 #LDFLAGS += #-L/usr/local/lib 16 #LIBS += $(shell pkg-config \ 17 #--define-variable=prefix=/usr/local \ 18 #--define-variable=libdir=/usr/local/lib --libs xmlsec1) 15 19 16 20 all: $(PROGRAM) -
TI12-security/trunk/python/ndg.security.common/ndg/security/common/XMLSec.py
r1967 r1973 459 459 460 460 inclNamespacesNode = self.__docNode.createElementNS(\ 461 462 'InclusiveNamespaces')461 DSIG.C14N_EXCL, 462 'ec:InclusiveNamespaces') 463 463 inclNamespacesNode.setAttribute('PrefixList', 464 464 ' '.join(refC14nKw['unsuppressedPrefixes'])) -
TI12-security/trunk/python/ndg.security.common/ndg/security/common/wsSecurity.py
r1857 r1973 143 143 c14nMethodElem.node.setAttribute('Algorithm', DSIG.C14N_EXCL) 144 144 c14nInclNamespacesElem = c14nMethodElem.createAppendElement(\ 145 146 'InclusiveNamespaces')145 DSIG.C14N_EXCL, 146 'InclusiveNamespaces') 147 147 c14nInclNamespacesElem.node.setAttribute('PrefixList', 148 148 ' '.join(signedInfoC14nKw['unsuppressedPrefixes']))
Note: See TracChangeset
for help on using the changeset viewer.