Home
last modified time | relevance | path

Searched refs:AuthenticationManager (Results 1 – 25 of 127) sorted by relevance

123456

/dports/net-im/ruqola/ruqola-1.6.1/src/core/autotests/
H A Druqolaserverconfigtest.cpp121 AuthenticationManager::OauthTypes types = AuthenticationManager::OauthType::Password; in shouldVerifyOauthType_data()
122 types |= AuthenticationManager::OauthType::Unknown; in shouldVerifyOauthType_data()
127 AuthenticationManager::OauthTypes types = AuthenticationManager::OauthType::Password; in shouldVerifyOauthType_data()
133 AuthenticationManager::OauthTypes types = AuthenticationManager::OauthType::Password; in shouldVerifyOauthType_data()
139 AuthenticationManager::OauthTypes types = AuthenticationManager::OauthType::Password; in shouldVerifyOauthType_data()
140 types |= AuthenticationManager::OauthType::Google; in shouldVerifyOauthType_data()
145 AuthenticationManager::OauthTypes types = AuthenticationManager::OauthType::Password; in shouldVerifyOauthType_data()
146 types |= AuthenticationManager::OauthType::Google; in shouldVerifyOauthType_data()
153 AuthenticationManager::OauthTypes types = AuthenticationManager::OauthType::Password; in shouldVerifyOauthType_data()
159 AuthenticationManager::OauthTypes types = AuthenticationManager::OauthType::Password; in shouldVerifyOauthType_data()
[all …]
H A Dauthenticationinfotest.cpp22 QCOMPARE(info.oauthType(), AuthenticationManager::Unknown); in shouldHaveDefaultValue()
34 QCOMPARE(info.oauthType(), AuthenticationManager::Unknown); in shouldAssignValue()
49 info.setOauthType(AuthenticationManager::Twitter); in shouldBeValid()
/dports/lang/mono/mono-5.10.1.57/external/corefx/src/System.Net.Requests/tests/
H A DAuthenticationManagerTest.cs36 AuthenticationManager.Register(module); in Register_Unregister_ModuleCountUnchanged()
37 AuthenticationManager.Unregister(module); in Register_Unregister_ModuleCountUnchanged()
50 AuthenticationManager.Register(module); in Register_UnregisterByScheme_ModuleCountUnchanged()
51 AuthenticationManager.Unregister("custom"); in Register_UnregisterByScheme_ModuleCountUnchanged()
62 IEnumerator modules = AuthenticationManager.RegisteredModules; in RegisteredModules_DefaultCount_ExpectedValue()
70 Assert.Null(AuthenticationManager.CredentialPolicy); in CredentialPolicy_Roundtrip()
75 AuthenticationManager.CredentialPolicy = cp; in CredentialPolicy_Roundtrip()
76 Assert.Same(cp, AuthenticationManager.CredentialPolicy); in CredentialPolicy_Roundtrip()
78 AuthenticationManager.CredentialPolicy = null; in CredentialPolicy_Roundtrip()
79 Assert.Null(AuthenticationManager.CredentialPolicy); in CredentialPolicy_Roundtrip()
[all …]
/dports/converters/wkhtmltopdf/qt-5db36ec/src/3rdparty/webkit/Source/WebKit2/WebProcess/Authentication/
H A DAuthenticationManager.cpp50 AuthenticationManager& AuthenticationManager::shared() in shared()
52 static AuthenticationManager& manager = *new AuthenticationManager; in shared()
56 AuthenticationManager::AuthenticationManager() in AuthenticationManager() function in WebKit::AuthenticationManager
60 void AuthenticationManager::didReceiveMessage(CoreIPC::Connection* connection, CoreIPC::MessageID m… in didReceiveMessage()
65 void AuthenticationManager::didReceiveAuthenticationChallenge(WebFrame* frame, const Authentication… in didReceiveAuthenticationChallenge()
76 void AuthenticationManager::didReceiveAuthenticationChallenge(Download* download, const Authenticat… in didReceiveAuthenticationChallenge()
86 bool AuthenticationManager::tryUsePlatformCertificateInfoForChallenge(const WebCore::Authentication… in tryUsePlatformCertificateInfoForChallenge()
92 void AuthenticationManager::useCredentialForChallenge(uint64_t challengeID, const Credential& crede… in useCredentialForChallenge()
111 void AuthenticationManager::continueWithoutCredentialForChallenge(uint64_t challengeID) in continueWithoutCredentialForChallenge()
125 void AuthenticationManager::cancelChallenge(uint64_t challengeID) in cancelChallenge()
H A DAuthenticationManager.h48 class AuthenticationManager {
49 WTF_MAKE_NONCOPYABLE(AuthenticationManager);
52 static AuthenticationManager& shared();
64 AuthenticationManager();
/dports/net-im/ruqola/ruqola-1.6.1/src/core/
H A Dauthenticationmanager.cpp17 AuthenticationManager::AuthenticationManager(QObject *parent) in AuthenticationManager() function in AuthenticationManager
23 AuthenticationManager::~AuthenticationManager() = default;
25 AuthenticationManager *AuthenticationManager::self() in self()
27 static AuthenticationManager s_self; in self()
31 void AuthenticationManager::initializePluginList() in initializePluginList()
66 void AuthenticationManager::loadPlugin(AuthenticationManagerInfo *item) in loadPlugin()
82 QVector<PluginAuthentication *> AuthenticationManager::pluginsList() const in pluginsList()
94 PluginUtilData AuthenticationManager::createPluginMetaData(const KPluginMetaData &metaData) in createPluginMetaData()
H A Dauthenticationmanager.h36 class LIBRUQOLACORE_EXPORT AuthenticationManager : public QObject
54 explicit AuthenticationManager(QObject *parent = nullptr);
55 ~AuthenticationManager() override;
57 static AuthenticationManager *self();
62 Q_DISABLE_COPY(AuthenticationManager)
69 Q_DECLARE_METATYPE(AuthenticationManager::OauthTypes)
70 Q_DECLARE_METATYPE(AuthenticationManager::OauthType)
H A Druqolaserverconfig.h79 Q_REQUIRED_RESULT AuthenticationManager::OauthTypes serverOauthTypes() const;
81 … Q_REQUIRED_RESULT bool serverHasSupportForOauthType(AuthenticationManager::OauthType type) const;
83 … Q_REQUIRED_RESULT bool ruqolaHasSupportForOauthType(AuthenticationManager::OauthType type) const;
84 Q_REQUIRED_RESULT bool canShowOauthService(AuthenticationManager::OauthType type) const;
85 void addRuqolaAuthenticationSupport(AuthenticationManager::OauthType type);
86 Q_REQUIRED_RESULT AuthenticationManager::OauthTypes ruqolaOauthTypes() const;
137AuthenticationManager::OauthTypes mServerOauthTypes = AuthenticationManager::OauthType::Password;
138AuthenticationManager::OauthTypes mRuqolaOauthTypes = AuthenticationManager::OauthType::Password;
H A Druqolaserverconfig.cpp129 bool RuqolaServerConfig::canShowOauthService(AuthenticationManager::OauthType type) const in canShowOauthService()
134 void RuqolaServerConfig::addRuqolaAuthenticationSupport(AuthenticationManager::OauthType type) in addRuqolaAuthenticationSupport()
148 mServerOauthTypes |= AuthenticationManager::OauthType::Twitter; in addOauthService()
150 mServerOauthTypes |= AuthenticationManager::OauthType::FaceBook; in addOauthService()
152 mServerOauthTypes |= AuthenticationManager::OauthType::GitHub; in addOauthService()
154 mServerOauthTypes |= AuthenticationManager::OauthType::GitLab; in addOauthService()
156 mServerOauthTypes |= AuthenticationManager::OauthType::Google; in addOauthService()
158 mServerOauthTypes |= AuthenticationManager::OauthType::Linkedin; in addOauthService()
160 mServerOauthTypes |= AuthenticationManager::OauthType::Wordpress; in addOauthService()
269 AuthenticationManager::OauthTypes RuqolaServerConfig::ruqolaOauthTypes() const in ruqolaOauthTypes()
[all …]
H A Dauthenticationinfo.h25 Q_REQUIRED_RESULT AuthenticationManager::OauthType oauthType() const;
26 void setOauthType(AuthenticationManager::OauthType oauthType);
33 AuthenticationManager::OauthType mOauthType = AuthenticationManager::OauthType::Unknown;
H A Dauthenticationinfo.cpp33 AuthenticationManager::OauthType AuthenticationInfo::oauthType() const in oauthType()
38 void AuthenticationInfo::setOauthType(AuthenticationManager::OauthType oauthType) in setOauthType()
45 return (mOauthType != AuthenticationManager::Unknown) && !mName.isEmpty(); in isValid()
/dports/converters/wkhtmltopdf/qt-5db36ec/src/3rdparty/webkit/Source/WebKit2/UIProcess/Authentication/
H A DAuthenticationChallengeProxy.cpp54 m_process->send(Messages::AuthenticationManager::CancelChallenge(m_challengeID), 0); in ~AuthenticationChallengeProxy()
66 …m_process->send(Messages::AuthenticationManager::ContinueWithoutCredentialForChallenge(m_challenge… in useCredential()
70 …m_process->send(Messages::AuthenticationManager::UseCredentialForChallenge(m_challengeID, credenti… in useCredential()
81 m_process->send(Messages::AuthenticationManager::CancelChallenge(m_challengeID), 0); in cancel()
/dports/lang/mono/mono-5.10.1.57/mcs/class/System/System.Net.Configuration/
H A DNetAuthenticationModuleHandler.cs63 AuthenticationManager.Clear (); in Create()
72 AuthenticationManager.Register (CreateInstance (type, child)); in Create()
77 AuthenticationManager.Unregister (CreateInstance (type, child)); in Create()
84 return AuthenticationManager.RegisteredModules; in Create()
/dports/www/drupal9/drupal-9.2.10/core/tests/Drupal/Tests/Core/Authentication/
H A DAuthenticationManagerTest.php11 use Drupal\Core\Authentication\AuthenticationManager; alias
35 $authentication_manager = new AuthenticationManager($auth_collector);
61 $authentication_manager = new AuthenticationManager($authentication_collector);
/dports/www/drupal8/drupal-8.9.20/core/tests/Drupal/Tests/Core/Authentication/
H A DAuthenticationManagerTest.php11 use Drupal\Core\Authentication\AuthenticationManager; alias
35 $authentication_manager = new AuthenticationManager($auth_collector);
61 $authentication_manager = new AuthenticationManager($authentication_collector);
/dports/www/kanboard/kanboard-1.2.21/app/Subscriber/
H A DAuthSubscriber.php6 use Kanboard\Core\Security\AuthenticationManager; alias
29 AuthenticationManager::EVENT_SUCCESS => 'afterLogin',
30 AuthenticationManager::EVENT_FAILURE => 'onLoginFailure',
/dports/net-im/ruqola/ruqola-1.6.1/src/plugins/authentication/password/
H A Dpasswordpluginauthentication.cpp26 AuthenticationManager::OauthType PasswordPluginAuthentication::type() const in type()
28 return AuthenticationManager::OauthType::Password; in type()
/dports/net-im/ruqola/ruqola-1.6.1/src/plugins/authentication/google/
H A Dgooglepluginauthentication.cpp29 AuthenticationManager::OauthType GooglePluginAuthentication::type() const in type()
31 return AuthenticationManager::OauthType::Google; in type()
/dports/lang/mono/mono-5.10.1.57/mcs/class/Facades/System.Net.AuthenticationManager/
H A DMakefile3 thisdir = class/Facades/System.Net.AuthenticationManager
10 LIBRARY = System.Net.AuthenticationManager.dll
/dports/lang/mono/mono-5.10.1.57/external/corefx/src/System.Net.Requests/src/System/Net/
H A DAuthenticationManager.cs10 public class AuthenticationManager class
12 private AuthenticationManager() { } in AuthenticationManager() method in System.Net.AuthenticationManager
/dports/devel/fossology-nomos-standalone/fossology-3.11.0/src/nomos/agent_tests/testdata/NomosTestfiles/See-file/
H A DConnection.java17 import ch.ethz.ssh2.auth.AuthenticationManager;
88 private AuthenticationManager am;
184 am = new AuthenticationManager(tm); in authenticateWithDSA()
265 am = new AuthenticationManager(tm); in authenticateWithKeyboardInteractive()
311 am = new AuthenticationManager(tm); in authenticateWithPassword()
362 am = new AuthenticationManager(tm); in authenticateWithNone()
430 am = new AuthenticationManager(tm); in authenticateWithPublicKey()
963 am = new AuthenticationManager(tm); in getRemainingAuthMethods()
/dports/audio/ampache/ampache-php74-5.0.0/tests/Module/Authentication/
H A DAuthenticationManagerTest.php43 /** @var AuthenticationManager|null */
44 private ?AuthenticationManager $subject;
51 $this->subject = new AuthenticationManager(
/dports/lang/mono/mono-5.10.1.57/mcs/class/System/System.Net/
H A DAuthenticationManager.platformnotsupported.cs32 public class AuthenticationManager { class
35 private AuthenticationManager () in AuthenticationManager() method in System.Net.AuthenticationManager
/dports/lang/mono/mono-5.10.1.57/mcs/class/referencesource/System/net/System/Net/
H A D_NegotiateClient.cs89 ICredentialPolicy policy = AuthenticationManager.CredentialPolicy; in DoAuthenticate()
131 …return AuthenticationManager.GetGroupAuthorization(this, (useNego2 ? nego2Header : negotiateHeader… in DoAuthenticate()
245 index = AuthenticationManager.FindSubstringNotInQuotes(challenge, nego2Signature); in GetSignatureIndex()
250 … index = AuthenticationManager.FindSubstringNotInQuotes(challenge, negotiateSignature); in GetSignatureIndex()
H A D_AuthenticationState.cs122 SpnToken spnToken = AuthenticationManager.SpnDictionary.InternalGet(spnKey); in GetComputeSpn()
171 AuthenticationManager.SpnDictionary.InternalSet(spnKey, spnToken); in GetComputeSpn()
188 preauth = AuthenticationManager.PreAuthenticate(httpWebRequest, authInfo); in PreAuthIfNeeded()
267 … Authorization = AuthenticationManager.Authenticate(challenge, httpWebRequest, authInfo); in AttemptAuthenticate()
393 AuthenticationManager.BindModule(ChallengedUri, Authorization, Module); in Update()

123456