Home
last modified time | relevance | path

Searched refs:auth_plugin (Results 1 – 25 of 234) sorted by relevance

12345678910

/dports/databases/py-python-swiftclient/python-swiftclient-3.12.0/test/unit/
H A Dtest_authv1.py61 self.assertIsNone(auth_plugin.get_auth_state())
64 auth_plugin.auth_ref = authv1.AccessInfoV1(
86 self.assertIsNone(auth_plugin.auth_ref)
88 auth_plugin.auth_ref = object()
89 auth_plugin.set_auth_state(None)
90 self.assertIsNone(auth_plugin.get_auth_state())
101 auth_plugin.set_auth_state(state)
214 auth_endpoint = auth_plugin.get_endpoint(
224 auth_plugin.get_endpoint(
231 auth_plugin.get_endpoint(
[all …]
/dports/net/mosquitto/mosquitto-2.0.13/test/random/
H A Drandom.conf10 auth_plugin ./auth_plugin.so
14 auth_plugin ./auth_plugin.so
33 auth_plugin ./auth_plugin.so
40 auth_plugin ./auth_plugin.so
53 auth_plugin ./auth_plugin.so
58 auth_plugin ./auth_plugin.so
80 auth_plugin ./auth_plugin.so
88 auth_plugin ./auth_plugin.so
H A DMakefile11 all : auth_plugin.so
13 auth_plugin.so : auth_plugin.c
/dports/www/domoticz/domoticz-2020.2/extern/mosquitto/test/random/
H A Drandom.conf10 auth_plugin ./auth_plugin.so
14 auth_plugin ./auth_plugin.so
33 auth_plugin ./auth_plugin.so
40 auth_plugin ./auth_plugin.so
53 auth_plugin ./auth_plugin.so
58 auth_plugin ./auth_plugin.so
80 auth_plugin ./auth_plugin.so
88 auth_plugin ./auth_plugin.so
H A DMakefile11 all : auth_plugin.so
13 auth_plugin.so : auth_plugin.c
/dports/net/py-python-ceilometerclient/python-ceilometerclient-2.9.0/ceilometerclient/tests/unit/
H A Dtest_client.py110 auth_plugin.mock_calls[0])
179 self.assertIn('insecure', client.auth_plugin.opts)
270 client.auth_plugin.opts.pop('token', None)
297 client.auth_plugin.opts.pop('token', None)
328 client.auth_plugin.opts.pop('token', None)
349 client.auth_plugin.opts.pop('endpoint')
350 client.auth_plugin.opts.pop('token', None)
384 client.auth_plugin.opts)
397 client.auth_plugin.opts.pop('endpoint')
398 client.auth_plugin.opts.pop('token', None)
[all …]
/dports/databases/py-mysql-connector-python/mysql-connector-python-8.0.27/tests/
H A Dtest_authentication.py229 auth_plugin.auth_response()
235 auth_plugin.prepare_password()
292 auth_plugin.auth_continue(
299 auth_plugin.auth_continue(
314 auth_plugin.auth_finalize(
325 auth_plugin.auth_response()
332 auth_plugin.prepare_password()
388 auth_plugin.auth_continue(
395 auth_plugin.auth_continue(
410 auth_plugin.auth_finalize(
[all …]
/dports/net/jgroups/jgroups-2.12.0/src/org/jgroups/protocols/
H A DAUTH.java30 private AuthToken auth_plugin=null; field in AUTH
44 auth_plugin=(AuthToken)obj; in setAuthClass()
45 auth_plugin.setAuth(this); in setAuthClass()
48 …public String getAuthClass() {return auth_plugin != null? auth_plugin.getClass().getName() : null;} in getAuthClass()
52 if(auth_plugin != null) in getConfigurableObjects()
53 retval.add(auth_plugin); in getConfigurableObjects()
59 if(auth_plugin instanceof X509Token) { in init()
60 X509Token tmp=(X509Token)auth_plugin; in init()
63 auth_plugin.init(); in init()
90 if(this.auth_plugin.authenticate(authHeader.getToken(), msg)) { in up()
[all …]
/dports/mail/libesmtp/libesmtp-1.0.6/
H A Dauth-client.c67 struct auth_plugin struct
69 struct auth_plugin *next; argument
117 struct auth_plugin *auth_plugin; in append_plugin() local
121 auth_plugin = malloc (sizeof (struct auth_plugin)); in append_plugin()
122 if (auth_plugin == NULL) in append_plugin()
127 auth_plugin->info = info; in append_plugin()
128 auth_plugin->module = module; in append_plugin()
129 auth_plugin->next = NULL; in append_plugin()
131 client_plugins = auth_plugin; in append_plugin()
282 struct auth_plugin *plugin; in auth_set_external_id()
[all …]
/dports/net/py-python-ceilometerclient/python-ceilometerclient-2.9.0/ceilometerclient/
H A Dshell.py51 self.auth_plugin = ceiloclient.AuthPlugin()
107 self.auth_plugin.add_opts(parser)
108 self.auth_plugin.add_common_opts(parser)
158 self.auth_plugin.parse_opts(options)
193 if not ((self.auth_plugin.opts.get('token')
195 and self.auth_plugin.opts['endpoint']):
196 if not self.auth_plugin.opts['username']:
201 if not self.auth_plugin.opts['password']:
213 if not self.auth_plugin.opts['auth_url']:
219 client_kwargs.update(self.auth_plugin.opts)
[all …]
/dports/devel/py-os-client-config/os-client-config-2.1.0/os_client_config/tests/
H A Dtest_cloud_config.py169 "test1", "region-al", config_dict, auth_plugin=mock.Mock())
179 "test1", "region-al", config_dict, auth_plugin=mock.Mock())
191 "test1", "region-al", config_dict, auth_plugin=mock.Mock())
204 "test1", "region-al", {}, auth_plugin=mock.Mock())
227 "test1", "region-al", config_dict, auth_plugin=mock.Mock())
253 "test1", "region-al", config_dict, auth_plugin=mock.Mock())
274 "test1", "region-al", config_dict, auth_plugin=mock.Mock())
297 auth_plugin=mock.Mock())
317 "test1", "region-al", config_dict, auth_plugin=mock.Mock())
335 "test1", "region-al", config_dict, auth_plugin=mock.Mock())
[all …]
/dports/net/py-python-ceilometerclient/python-ceilometerclient-2.9.0/ceilometerclient/apiclient/
H A Dclient.py70 auth_plugin, argument
82 self.auth_plugin = auth_plugin
239 token, endpoint = self.auth_plugin.token_and_endpoint(
246 token, endpoint = self.auth_plugin.token_and_endpoint(
267 if self.auth_plugin.opts.get('token'):
268 self.auth_plugin.opts['token'] = None
269 if self.auth_plugin.opts.get('endpoint'):
270 self.auth_plugin.opts['endpoint'] = None
273 token, endpoint = self.auth_plugin.token_and_endpoint(
315 self.auth_plugin.authenticate(self)
/dports/www/dokuwiki/dokuwiki-2020-07-29/lib/plugins/config/core/Setting/
H A DSettingAuthtype.php34 $auth_plugin = $plugin_controller->load('auth', $input);
37 if(is_null($auth_plugin)) {
44 if(is_object($auth_plugin) && !method_exists($auth_plugin, 'getPluginName')) {
/dports/net/py-python-keystoneclient/python-keystoneclient-4.3.0/keystoneclient/tests/unit/auth/
H A Dtest_conf.py54 self.conf_fixture.config(auth_plugin=self.V2PASS,
81 self.conf_fixture.config(auth_plugin=self.V3TOKEN,
96 auth_plugin = uuid.uuid4().hex
97 self.conf_fixture.config(auth_plugin=auth_plugin,
105 self.assertEqual(auth_plugin, e.name)
118 self.conf_fixture.config(auth_plugin=driver_name,
134 self.conf_fixture.config(auth_plugin=uuid.uuid4().hex,
151 auth_plugin=uuid.uuid4().hex,
/dports/databases/phpmyadmin5/phpMyAdmin-5.1.2-all-languages/libraries/
H A Dcommon.inc.php51 global $lang, $cfg, $isConfigLoading, $auth_plugin, $route, $PMA_Theme;
264 $auth_plugin = Plugins::getAuthPlugin(); variable
265 $auth_plugin->authenticate();
275 Core::connectToDatabaseServer($dbi, $auth_plugin);
277 $auth_plugin->rememberCredentials();
279 $auth_plugin->checkTwoFactor();
/dports/databases/xtrabackup8/percona-xtrabackup-8.0.14/mysql-test/suite/auth_sec/t/
H A Dmultiple_passwords.test5 --let $auth_plugin=mysql_native_password
8 --let $auth_plugin=caching_sha2_password
11 --let $auth_plugin=sha256_password
/dports/databases/percona57-server/percona-server-5.7.36-39/mysql-test/suite/rpl/t/
H A Drpl_user_if_exists.test265 # CREATE gets ERROR since shsh auth_plugin do not exists
270 # Check that user u3's auth_plugin has not changed
272 --let $assert_text= assert that u3's auth_plugin has not changed
273 --let $assert_cond= "mysql_native_password" = "$auth_plugin"
282 # CREATE gets ERROR since shsh auth_plugin do not exists
287 # Check that user u3's auth_plugin has not changed
289 --let $assert_text= assert that u3's auth_plugin has not changed
290 --let $assert_cond= "$auth_plugin" = "mysql_native_password"
295 # ALTER gets ERROR since shsh auth_plugin do not exists
301 # Check that user u3's auth_plugin has got changed
[all …]
/dports/databases/xtrabackup/percona-xtrabackup-2.4.21/mysql-test/suite/rpl/t/
H A Drpl_user_if_exists.test265 # CREATE gets ERROR since shsh auth_plugin do not exists
270 # Check that user u3's auth_plugin has not changed
272 --let $assert_text= assert that u3's auth_plugin has not changed
273 --let $assert_cond= "mysql_native_password" = "$auth_plugin"
282 # CREATE gets ERROR since shsh auth_plugin do not exists
287 # Check that user u3's auth_plugin has not changed
289 --let $assert_text= assert that u3's auth_plugin has not changed
290 --let $assert_cond= "$auth_plugin" = "mysql_native_password"
295 # ALTER gets ERROR since shsh auth_plugin do not exists
301 # Check that user u3's auth_plugin has got changed
[all …]
/dports/databases/mysqlwsrep57-server/mysql-wsrep-wsrep_5.7.35-25.27/mysql-test/suite/rpl/t/
H A Drpl_user_if_exists.test265 # CREATE gets ERROR since shsh auth_plugin do not exists
270 # Check that user u3's auth_plugin has not changed
272 --let $assert_text= assert that u3's auth_plugin has not changed
273 --let $assert_cond= "mysql_native_password" = "$auth_plugin"
282 # CREATE gets ERROR since shsh auth_plugin do not exists
287 # Check that user u3's auth_plugin has not changed
289 --let $assert_text= assert that u3's auth_plugin has not changed
290 --let $assert_cond= "$auth_plugin" = "mysql_native_password"
295 # ALTER gets ERROR since shsh auth_plugin do not exists
301 # Check that user u3's auth_plugin has got changed
[all …]
/dports/databases/percona57-pam-for-mysql/percona-server-5.7.36-39/mysql-test/suite/rpl/t/
H A Drpl_user_if_exists.test265 # CREATE gets ERROR since shsh auth_plugin do not exists
270 # Check that user u3's auth_plugin has not changed
272 --let $assert_text= assert that u3's auth_plugin has not changed
273 --let $assert_cond= "mysql_native_password" = "$auth_plugin"
282 # CREATE gets ERROR since shsh auth_plugin do not exists
287 # Check that user u3's auth_plugin has not changed
289 --let $assert_text= assert that u3's auth_plugin has not changed
290 --let $assert_cond= "$auth_plugin" = "mysql_native_password"
295 # ALTER gets ERROR since shsh auth_plugin do not exists
301 # Check that user u3's auth_plugin has got changed
[all …]
/dports/databases/percona57-client/percona-server-5.7.36-39/mysql-test/suite/rpl/t/
H A Drpl_user_if_exists.test265 # CREATE gets ERROR since shsh auth_plugin do not exists
270 # Check that user u3's auth_plugin has not changed
272 --let $assert_text= assert that u3's auth_plugin has not changed
273 --let $assert_cond= "mysql_native_password" = "$auth_plugin"
282 # CREATE gets ERROR since shsh auth_plugin do not exists
287 # Check that user u3's auth_plugin has not changed
289 --let $assert_text= assert that u3's auth_plugin has not changed
290 --let $assert_cond= "$auth_plugin" = "mysql_native_password"
295 # ALTER gets ERROR since shsh auth_plugin do not exists
301 # Check that user u3's auth_plugin has got changed
[all …]
/dports/databases/mysql57-client/mysql-5.7.36/mysql-test/suite/rpl/t/
H A Drpl_user_if_exists.test265 # CREATE gets ERROR since shsh auth_plugin do not exists
270 # Check that user u3's auth_plugin has not changed
272 --let $assert_text= assert that u3's auth_plugin has not changed
273 --let $assert_cond= "mysql_native_password" = "$auth_plugin"
282 # CREATE gets ERROR since shsh auth_plugin do not exists
287 # Check that user u3's auth_plugin has not changed
289 --let $assert_text= assert that u3's auth_plugin has not changed
290 --let $assert_cond= "$auth_plugin" = "mysql_native_password"
295 # ALTER gets ERROR since shsh auth_plugin do not exists
301 # Check that user u3's auth_plugin has got changed
[all …]
/dports/devel/emscripten/emscripten-2.0.3/third_party/websockify/websockify/
H A Dwebsocketproxy.py54 if self.server.auth_plugin:
56 self.server.auth_plugin.authenticate(
231 self.auth_plugin = kwargs.pop('auth_plugin', None)
436 if opts.auth_source and not opts.auth_plugin:
502 if opts.auth_plugin is not None:
503 if '.' not in opts.auth_plugin:
504 opts.auth_plugin = 'websockify.auth_plugins.%s' % opts.auth_plugin
506 auth_plugin_module, auth_plugin_cls = opts.auth_plugin.rsplit('.', 1)
511 opts.auth_plugin = auth_plugin_cls(opts.auth_source)
543 self.auth_plugin = kwargs.pop('auth_plugin', None)
[all …]
/dports/databases/xtrabackup8/percona-xtrabackup-8.0.14/router/src/mysql_protocol/tests/
H A Dtest_handshake_packet.cc641 TEST_F(HandshakeResponseParseTest, auth_plugin) { in TEST_F() argument
680 std::vector<uint8_t> auth_plugin = str2bytes( in TEST_F() local
688 bytes.insert(bytes.end(), auth_plugin.begin(), auth_plugin.end()); in TEST_F()
702 bytes.insert(bytes.end(), auth_plugin.begin(), auth_plugin.end()); in TEST_F()
711 EXPECT_EQ(kOffset + auth_plugin.size() + 1, pkt.position_); in TEST_F()
712 EXPECT_EQ(std::string(auth_plugin.begin(), auth_plugin.end()), in TEST_F()
802 const std::string auth_plugin = "some_auth_plugin"; in TEST_F() local
833 bytes.insert(bytes.end(), auth_plugin.begin(), auth_plugin.end()); in TEST_F()
863 EXPECT_EQ(auth_plugin, pkt.auth_plugin_); in TEST_F()
/dports/databases/phpmyadmin/phpMyAdmin-4.9.7-all-languages/libraries/
H A Dcommon.inc.php351 $auth_plugin = new $auth_class(); variable
353 $auth_plugin->authenticate();
371 $auth_plugin->showFailure('mysql-denied');
388 $auth_plugin->rememberCredentials();
390 $auth_plugin->checkTwoFactor();

12345678910