Home
last modified time | relevance | path

Searched refs:serverPassword (Results 1 – 25 of 30) sorted by relevance

12

/dports/java/bouncycastle15/crypto-169/tls/src/test/java/org/bouncycastle/jsse/provider/test/
H A DCipherSuitesTestSuite.java50 char[] serverPassword = "serverPassword".toCharArray();
62 …ks.setKeyEntry("serverDSA", caKeyPairDSA.getPrivate(), serverPassword, new X509Certificate[]{ caCe…
63 …ks.setKeyEntry("serverEC", caKeyPairEC.getPrivate(), serverPassword, new X509Certificate[]{ caCert…
64 …ks.setKeyEntry("serverRSA", caKeyPairRSA.getPrivate(), serverPassword, new X509Certificate[]{ caCe…
130 config.serverPassword = serverPassword;
H A DCipherSuitesEngineTestSuite.java50 char[] serverPassword = "serverPassword".toCharArray();
62 …ks.setKeyEntry("serverDSA", caKeyPairDSA.getPrivate(), serverPassword, new X509Certificate[]{ caCe…
63 …ks.setKeyEntry("serverEC", caKeyPairEC.getPrivate(), serverPassword, new X509Certificate[]{ caCert…
64 …ks.setKeyEntry("serverRSA", caKeyPairRSA.getPrivate(), serverPassword, new X509Certificate[]{ caCe…
130 config.serverPassword = serverPassword;
H A DCipherSuitesTestConfig.java13 public char[] serverPassword = null; field in CipherSuitesTestConfig
H A DCipherSuitesEngineTestCase.java169 kmf.init(config.serverKeyStore, config.serverPassword); in createSSLContextServer()
H A DCipherSuitesTestCase.java114 keyMgrFact.init(config.serverKeyStore, config.serverPassword); in createServerContext()
/dports/emulators/mesen/Mesen-0.9.8-4-g4c701ad6/Core/
H A DHandShakeMessage.h50 bool CheckPassword(string serverPassword, string connectionHash) in CheckPassword() argument
52 return GetPasswordHash(serverPassword, connectionHash) == string(_hashedPassword); in CheckPassword()
60 static string GetPasswordHash(string serverPassword, string connectionHash) in GetPasswordHash() argument
62 string saltedPassword = serverPassword + connectionHash; in GetPasswordHash()
H A DGameServerConnection.cpp24 …ction(shared_ptr<Console> console, shared_ptr<Socket> socket, string serverPassword) : GameConnect… in GameServerConnection() argument
27 _serverPassword = serverPassword; in GameServerConnection()
H A DGameServerConnection.h40 …GameServerConnection(shared_ptr<Console> console, shared_ptr<Socket> socket, string serverPassword
/dports/www/tikiwiki/tiki-21.2/vendor_bundled/vendor/kaltura/api-client-library/library/Kaltura/Client/Type/
H A DStorageJobData.php57 if(count($xml->serverPassword))
58 $this->serverPassword = (string)$xml->serverPassword;
95 public $serverPassword = null; variable in Kaltura\\Client\\Type\\StorageJobData
/dports/security/xml-security/xml-security-1_5_5/src/test/java/org/apache/xml/security/test/utils/resolver/
H A DResolverDirectHTTPTest.java44 private static final String serverPassword = "serverPass"; field in ResolverDirectHTTPTest
110 resolverDirectHTTP.engineSetProperty("http.basic.password", serverPassword); in testServerAuth()
145 resolverDirectHTTP.engineSetProperty("http.basic.password", serverPassword); in testProxyAndServerAuth()
/dports/irc/komanda-cli/komanda-cli-b5ba03b/
H A Dkomanda.go37 serverPassword = app.Flag("server-password", "server password").Short('P').String() var
121 if len(*serverPassword) > 0 {
122 config.C.Server.ServerPassword = *serverPassword
/dports/www/tomcat-native/tomcat-native-1.2.24-src/examples/org/apache/tomcat/jni/
H A DSSLServer.java36 public static String serverPassword = null; field in SSLServer
58 serverPassword = props.getProperty("server.password", null);
74 … SSLContext.setCertificate(serverCtx, serverCert, serverKey, serverPassword, SSL.SSL_AIDX_RSA); in SSLServer()
/dports/databases/hbase/hbase-1.2.1/hbase-server/src/test/java/org/apache/hadoop/hbase/http/ssl/
H A DKeyStoreTestUtil.java202 String serverPassword = "serverP"; in setupSSLConfig() local
225 KeyStoreTestUtil.createKeyStore(serverKS, serverPassword, "server", in setupSSLConfig()
233 Configuration serverSSLConf = createServerSSLConfig(serverKS, serverPassword, in setupSSLConfig()
234 serverPassword, trustKS); in setupSSLConfig()
/dports/games/pokerth/pokerth-1.1.2-rc/src/net/
H A Dclientcontext.h80 void SetServerPassword(const std::string &serverPassword) in SetServerPassword() argument
82 m_serverPassword = serverPassword; in SetServerPassword()
H A Dclientthread.h116 const std::string &serverPassword,
/dports/devel/hadoop2/hadoop-2.7.2-src/hadoop-common-project/hadoop-common/src/test/java/org/apache/hadoop/security/ssl/
H A DKeyStoreTestUtil.java232 String serverPassword = "serverP"; in setupSSLConfig() local
255 KeyStoreTestUtil.createKeyStore(serverKS, serverPassword, "server", in setupSSLConfig()
266 Configuration serverSSLConf = createServerSSLConfig(serverKS, serverPassword, in setupSSLConfig()
267 serverPassword, trustKS); in setupSSLConfig()
/dports/multimedia/syncplay/syncplay-1.6.4a/syncplay/
H A Dprotocols.py447 serverPassword = hello["password"] if "password" in hello else None
458 return username, serverPassword, roomName, version, features
460 def _checkPassword(self, serverPassword): argument
462 if not serverPassword:
465 if serverPassword != self._factory.password:
471 username, serverPassword, roomName, version, features = self._extractHelloArguments(hello)
476 if not self._checkPassword(serverPassword):
/dports/databases/hbase/hbase-1.2.1/hbase-it/src/test/java/org/apache/hadoop/hbase/
H A DRESTApiClusterManager.java85 private String serverPassword; field in RESTApiClusterManager
115 serverPassword = conf.get(REST_API_CLUSTER_MANAGER_PASSWORD, DEFAULT_SERVER_PASSWORD); in setConf()
119 client.addFilter(new HTTPBasicAuthFilter(serverUsername, serverPassword)); in setConf()
/dports/mail/davmail/davmail-src-6.0.1-3390/src/java/davmail/http/
H A DKerberosHelper.java240 … LoginContext serverLogin(final String serverPrincipal, final String serverPassword) throws LoginE… in serverLogin() argument
248 passCallback.setPassword(serverPassword.toCharArray()); in serverLogin()
/dports/devel/gh/cli-2.4.0/pkg/liveshare/test/
H A Dserver.go114 func sshPasswordCallback(serverPassword string) func(ssh.ConnMetadata, []byte) (*ssh.Permissions, e…
116 if string(password) == serverPassword {
/dports/databases/go-pgweb/pgweb-0.11.7/pkg/client/
H A Dclient_test.go23 serverPassword string var
58 serverPassword = getVar("PGPASSWORD", "postgres")
/dports/devel/eric6/eric6-21.11/eric/eric6/Network/IRC/
H A DIrcWidget.py535 serverPassword = self.__server.getPassword()
536 if serverPassword:
537 self.__send("PASS " + serverPassword)
/dports/mail/thunderbird/thunderbird-91.8.0/comm/chat/protocols/irc/
H A DircNonStandard.jsm57 // serverPassword preference was not set by the user. Attempt to log into
/dports/mail/thunderbird/thunderbird-91.8.0/comm/mailnews/imap/public/
H A DnsIImapServerSink.idl158 readonly attribute AString serverPassword;
/dports/games/pokerth/pokerth-1.1.2-rc/src/net/common/
H A Dclientthread.cpp93 const string &serverPassword, in Init() argument
109 context.SetServerPassword(serverPassword); in Init()

12