summaryrefslogtreecommitdiff
path: root/cs/config/TestUtil.py
diff options
context:
space:
mode:
authorMark Spruiell <mes@zeroc.com>2006-03-22 21:23:36 +0000
committerMark Spruiell <mes@zeroc.com>2006-03-22 21:23:36 +0000
commit2c0a35e6914e83a5c865bbe7edf6257649d8a5e6 (patch)
tree95ddd0bd229e0d524f3f4b3729945ffa2a4ace35 /cs/config/TestUtil.py
parentexposing closeSocketNoThrow (diff)
downloadice-2c0a35e6914e83a5c865bbe7edf6257649d8a5e6.tar.bz2
ice-2c0a35e6914e83a5c865bbe7edf6257649d8a5e6.tar.xz
ice-2c0a35e6914e83a5c865bbe7edf6257649d8a5e6.zip
renaming CertPassword property to Password
Diffstat (limited to 'cs/config/TestUtil.py')
-rw-r--r--cs/config/TestUtil.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/cs/config/TestUtil.py b/cs/config/TestUtil.py
index 30e67396ac5..beb75c01789 100644
--- a/cs/config/TestUtil.py
+++ b/cs/config/TestUtil.py
@@ -162,21 +162,21 @@ if protocol == "ssl":
":IceSSL.PluginFactory"
clientProtocol = plugin + " --Ice.Default.Protocol=ssl" + \
" --IceSSL.Client.CertFile=" + os.path.join(toplevel, "certs", "c_rsa1024.pfx") + \
- " --IceSSL.Client.CertPassword=password" + \
+ " --IceSSL.Client.Password=password" + \
" --IceSSL.Client.CheckCertName=0"
serverProtocol = plugin + " --Ice.Default.Protocol=ssl" + \
" --IceSSL.ImportCert.LocalMachine.AuthRoot=" + \
os.path.join(toplevel, "certs", "cacert.pem") + \
" --IceSSL.Server.CertFile=" + os.path.join(toplevel, "certs", "s_rsa1024.pfx") + \
- " --IceSSL.Server.CertPassword=password"
+ " --IceSSL.Server.Password=password"
clientServerProtocol = plugin + " --Ice.Default.Protocol=ssl" + \
" --IceSSL.ImportCert.LocalMachine.AuthRoot=" + \
os.path.join(toplevel, "certs", "cacert.pem") + \
" --IceSSL.Client.CertFile=" + os.path.join(toplevel, "certs", "c_rsa1024.pfx") + \
- " --IceSSL.Client.CertPassword=password" + \
+ " --IceSSL.Client.Password=password" + \
" --IceSSL.Client.CheckCertName=0" + \
" --IceSSL.Server.CertFile=" + os.path.join(toplevel, "certs", "s_rsa1024.pfx") + \
- " --IceSSL.Server.CertPassword=password"
+ " --IceSSL.Server.Password=password"
cppPlugin = " --Ice.Plugin.IceSSL=IceSSL:create"
cppClientProtocol = cppPlugin + " --Ice.Default.Protocol=ssl" + \
" --IceSSL.Client.CertPath=" + os.path.join(toplevel, "certs") + \