Changeset 7155
- Timestamp:
- 02/07/10 10:14:50 (11 years ago)
- Location:
- TI12-security/trunk/NDGSecurity/python
- Files:
-
- 4 deleted
- 11 edited
Legend:
- Unmodified
- Added
- Removed
-
TI12-security/trunk/NDGSecurity/python/.pydevproject
r7081 r7155 14 14 <path>/home/pjkersha/workspace/MyProxyClient</path> 15 15 <path>/home/pjkersha/workspace/AuthKit/trunk</path> 16 <path>/home/pjkersha/workspace/NDG_XACML</path> 16 <path>/home/pjkersha/workspace/ndg_soap</path> 17 <path>/home/pjkersha/workspace/ndg_xacml</path> 17 18 </pydev_pathproperty> 18 19 </pydev_project> -
TI12-security/trunk/NDGSecurity/python/Tests/esg_integration/test_soapauthzdecisioninterface.py
r7080 r7155 20 20 from ndg.saml.xml.etree import ResponseElementTree 21 21 from ndg.security.common.utils.etree import prettyPrint 22 from ndg.s ecurity.common.saml_utils.binding.soap.authzdecisionquery import (22 from ndg.saml.saml2.binding.soap.client.authzdecisionquery import ( 23 23 AuthzDecisionQuerySslSOAPBinding) 24 24 -
TI12-security/trunk/NDGSecurity/python/Tests/etreewss/client/echoClientTest.cfg
r7080 r7155 13 13 signingPriKeyPwd = 14 14 signingCertFilePath = $NDGSEC_WSSECLNT_UNITTEST_DIR/clnt.crt 15 caCertFilePathList = $NDGSEC_WSSECLNT_UNITTEST_DIR/ ndg-test-ca.crt15 caCertFilePathList = $NDGSEC_WSSECLNT_UNITTEST_DIR/d573507a.0 16 16 17 17 [test1Echo] -
TI12-security/trunk/NDGSecurity/python/Tests/etreewss/server/wssecurity.cfg
r7080 r7155 50 50 51 51 # Provide a space separated list of file paths 52 caCertFilePathList=$NDGSEC_WSSESRV_UNITTEST_DIR/ ndg-test-ca.crt52 caCertFilePathList=$NDGSEC_WSSESRV_UNITTEST_DIR/d573507a.0 53 53 54 54 # Set the ValueType for the BinarySecurityToken added to the WSSE header for a -
TI12-security/trunk/NDGSecurity/python/Tests/ndgsecuredpylons/secured.ini
r7080 r7155 77 77 # List of CA certificates used to verify the signatures of 78 78 # Attribute Certificates retrieved 79 pip.caCertFilePathList=%(testConfigDir)s/ca/ ndg-test-ca.crt79 pip.caCertFilePathList=%(testConfigDir)s/ca/d573507a.0 80 80 81 81 # … … 99 99 100 100 # For signature verification. Provide a space separated list of file paths 101 pip.wssecurity.caCertFilePathList=%(testConfigDir)s/ca/ ndg-test-ca.crt101 pip.wssecurity.caCertFilePathList=%(testConfigDir)s/ca/d573507a.0 102 102 103 103 # ValueType for the BinarySecurityToken added to the WSSE header -
TI12-security/trunk/NDGSecurity/python/ndg_security_common/ndg/security/common/X509.py
r6861 r7155 19 19 20 20 # Handle not before and not after strings 21 from time import strftime22 21 from time import strptime 23 22 from datetime import datetime -
TI12-security/trunk/NDGSecurity/python/ndg_security_common/ndg/security/common/authz/pip/esginterface.py
r7076 r7155 19 19 from ndg.security.common.utils.configfileparsers import \ 20 20 CaseSensitiveConfigParser 21 from ndg.s ecurity.common.saml_utils.binding.soap.attributequery import \21 from ndg.saml.saml2.binding.soap.client.attributequery import \ 22 22 AttributeQuerySslSOAPBinding 23 23 from ndg.security.common.X509 import X509Cert … … 50 50 @type cfg: basestring /ConfigParser derived type 51 51 @param cfg: configuration file path or ConfigParser type object 52 @rtype: ndg.s ecurity.common.saml_utils.binding.soap.SOAPBinding52 @rtype: ndg.saml.saml2.binding.soap.client.SOAPBinding 53 53 @return: new instance of this class 54 54 ''' -
TI12-security/trunk/NDGSecurity/python/ndg_security_server/ndg/security/server/myproxy/certificate_extapp/saml_attribute_assertion.py
r7077 r7155 39 39 from ndg.saml.xml.etree import AssertionElementTree, ResponseElementTree 40 40 41 from ndg.s ecurity.common.saml_utils.binding.soap.attributequery import \41 from ndg.saml.saml2.binding.soap.client.attributequery import \ 42 42 AttributeQuerySslSOAPBinding 43 43 from ndg.security.common.saml_utils.esg import (EsgSamlNamespaces, -
TI12-security/trunk/NDGSecurity/python/ndg_security_server/ndg/security/server/wsgi/authz/__init__.py
r7077 r7155 23 23 from ndg.security.common.utils.classfactory import importClass 24 24 from ndg.security.common.X509 import X509Cert 25 from ndg.s ecurity.common.saml_utils.binding.soap.attributequery import \25 from ndg.saml.saml2.binding.soap.client.attributequery import \ 26 26 AttributeQuerySslSOAPBinding 27 27 -
TI12-security/trunk/NDGSecurity/python/ndg_security_test/ndg/security/test/unit/attributeauthorityclient/test_samlattributeauthorityclient.py
r7077 r7155 24 24 XSStringAttributeValue) 25 25 26 from ndg.s ecurity.common.saml_utils.binding.soapimport SOAPBinding27 from ndg.s ecurity.common.saml_utils.binding.soap.attributequery import (26 from ndg.saml.saml2.binding.soap.client import SOAPBinding 27 from ndg.saml.saml2.binding.soap.client.attributequery import ( 28 28 AttributeQuerySOAPBinding, 29 29 AttributeQuerySslSOAPBinding) -
TI12-security/trunk/NDGSecurity/python/ndg_security_test/ndg/security/test/unit/saml/test_samlinterface.py
r7077 r7155 32 32 from ndg.security.common.soap.etree import SOAPEnvelope 33 33 from ndg.security.common.utils.etree import QName, prettyPrint 34 from ndg.s ecurity.common.saml_utils.binding.soap.subjectquery import (34 from ndg.saml.saml2.binding.soap.client.subjectquery import ( 35 35 SubjectQuerySOAPBinding, ResponseIssueInstantInvalid, 36 36 AssertionIssueInstantInvalid, AssertionConditionNotBeforeInvalid,
Note: See TracChangeset
for help on using the changeset viewer.