Home
last modified time | relevance | path

Searched refs:authenticationMethod (Results 1 – 25 of 528) sorted by relevance

12345678910>>...22

/dports/lang/gnustep-base/libs-base-base-1_27_0/Source/
H A DNSURLProtectionSpace.m61 NSString *authenticationMethod; // Not retained field
81 - (NSString *) authenticationMethod
83 return this->authenticationMethod;
100 authenticationMethod: this->authenticationMethod];
138 authenticationMethod: (NSString *)authenticationMethod
145 if ([authenticationMethod isEqualToString:
150 else if ([authenticationMethod isEqualToString:
155 else if ([authenticationMethod isEqualToString:
195 authenticationMethod: (NSString *)authenticationMethod
201 authenticationMethod: authenticationMethod];
[all …]
/dports/lang/mono/mono-5.10.1.57/mcs/class/referencesource/System.IdentityModel/System/IdentityModel/Tokens/
H A DSamlAuthenticationClaimResource.cs20 string authenticationMethod; field in System.IdentityModel.Tokens.SamlAuthenticationClaimResource
33 if (string.IsNullOrEmpty(authenticationMethod)) in OnDeserialized()
41 string authenticationMethod, in SamlAuthenticationClaimResource() argument
46 if (string.IsNullOrEmpty(authenticationMethod)) in SamlAuthenticationClaimResource()
50 this.authenticationMethod = authenticationMethod; in SamlAuthenticationClaimResource()
58 string authenticationMethod, in SamlAuthenticationClaimResource() argument
63 : this(authenticationInstant, authenticationMethod, dnsAddress, ipAddress) in SamlAuthenticationClaimResource()
80 string authenticationMethod, in SamlAuthenticationClaimResource() argument
85 : this(authenticationInstant, authenticationMethod, dnsAddress, ipAddress) in SamlAuthenticationClaimResource()
106 return this.authenticationMethod;
[all …]
H A DSamlAuthenticationStatement.cs20 string authenticationMethod = XD.SamlDictionary.UnspecifiedAuthenticationMethod.Value; field in System.IdentityModel.Tokens.SamlAuthenticationStatement
31 string authenticationMethod, in SamlAuthenticationStatement() argument
38 if (string.IsNullOrEmpty(authenticationMethod)) in SamlAuthenticationStatement()
41 this.authenticationMethod = authenticationMethod; in SamlAuthenticationStatement()
74 get { return this.authenticationMethod; }
81 … this.authenticationMethod = XD.SamlDictionary.UnspecifiedAuthenticationMethod.Value;
83 this.authenticationMethod = value;
161 if (string.IsNullOrEmpty(this.authenticationMethod)) in CheckObjectValidity()
182 this.authenticationMethod = reader.GetAttribute(dictionary.AuthenticationMethod, null); in ReadXml()
183 if (string.IsNullOrEmpty(this.authenticationMethod)) in ReadXml()
[all …]
/dports/lang/mono/mono-5.10.1.57/mcs/class/System.IdentityModel/System.IdentityModel.Tokens/
H A DSamlAuthenticationClaimResource.cs43 DateTime authenticationInstant, string authenticationMethod, in SamlAuthenticationClaimResource() argument
47 method = authenticationMethod; in SamlAuthenticationClaimResource()
53 DateTime authenticationInstant, string authenticationMethod, in SamlAuthenticationClaimResource() argument
56 : this (authenticationInstant, authenticationMethod, dnsAddress, ipAddress) in SamlAuthenticationClaimResource()
65 DateTime authenticationInstant, string authenticationMethod, in SamlAuthenticationClaimResource() argument
68 : this (authenticationInstant, authenticationMethod, dnsAddress, ipAddress) in SamlAuthenticationClaimResource()
/dports/lang/mono/mono-5.10.1.57/mcs/class/Mono.Http/Mono.Http.Modules/
H A DAuthenticationModule.cs46 public AuthenticationModule (string authenticationMethod) in AuthenticationModule() argument
48 authMethod = authenticationMethod; in AuthenticationModule()
102 protected string Authorization (HttpApplication app, string authenticationMethod) in Authorization() argument
110 if (autz.ToUpper ().StartsWith (authenticationMethod.ToUpper ())) { in Authorization()
111 return autz.Substring (authenticationMethod.Length + 1); in Authorization()
/dports/lang/gnustep-base/libs-base-base-1_27_0/Headers/Foundation/
H A DNSURLProtectionSpace.h80 - (NSString *) authenticationMethod;
96 authenticationMethod: (NSString *)authenticationMethod;
107 authenticationMethod: (NSString *)authenticationMethod;
/dports/lang/fpc-source/fpc-3.2.2/packages/cocoaint/src/foundation/
H A DNSURLProtectionSpace.inc35 …ing; realm: NSString; authenticationMethod: NSString): instancetype; message 'initWithHost:port:pr…
36 …ng; realm: NSString; authenticationMethod: NSString): instancetype; message 'initWithProxyHost:por…
44 function authenticationMethod: NSString; message 'authenticationMethod';
/dports/www/tikiwiki/tiki-21.2/vendor_bundled/vendor/kaltura/api-client-library/library/Kaltura/Client/Plugin/HttpNotification/Type/
H A DHttpNotificationTemplate.php67 if(count($xml->authenticationMethod))
68 $this->authenticationMethod = (int)$xml->authenticationMethod;
142 public $authenticationMethod = null; variable in Kaltura\\Client\\Plugin\\HttpNotification\\Type\\HttpNotificationTemplate
H A DHttpNotificationDispatchJobData.php67 if(count($xml->authenticationMethod))
68 $this->authenticationMethod = (int)$xml->authenticationMethod;
144 public $authenticationMethod = null; variable in Kaltura\\Client\\Plugin\\HttpNotification\\Type\\HttpNotificationDispatchJobData
/dports/security/zaproxy/zaproxy-2.11.1/zap/src/main/java/org/zaproxy/zap/extension/api/
H A DContextAPI.java469 AuthenticationMethod authenticationMethod = c.getAuthenticationMethod(); in buildResponseFromContext() local
470 if (authenticationMethod != null) { in buildResponseFromContext()
471 Pattern pattern = authenticationMethod.getLoggedInIndicatorPattern(); in buildResponseFromContext()
473 pattern = authenticationMethod.getLoggedOutIndicatorPattern(); in buildResponseFromContext()
475 AuthenticationMethodType type = authenticationMethod.getType(); in buildResponseFromContext()
478 AuthCheckingStrategy strategy = authenticationMethod.getAuthCheckingStrategy(); in buildResponseFromContext()
481 fields.put(PARAM_POLL_URL, authenticationMethod.getPollUrl()); in buildResponseFromContext()
482 fields.put(PARAM_POLL_DATA, authenticationMethod.getPollData()); in buildResponseFromContext()
483 fields.put(PARAM_POLL_HEADERS, authenticationMethod.getPollData()); in buildResponseFromContext()
485 PARAM_POLL_FREQ, Integer.toString(authenticationMethod.getPollFrequency())); in buildResponseFromContext()
[all …]
/dports/security/lasso/lasso-2.7.0/lasso/xml/
H A Dlib_authentication_statement.c136 lasso_lib_authentication_statement_new_full(const char *authenticationMethod, in lasso_lib_authentication_statement_new_full() argument
149 g_return_val_if_fail(authenticationMethod, NULL); in lasso_lib_authentication_statement_new_full()
159 statement->AuthenticationMethod = g_strdup(authenticationMethod); in lasso_lib_authentication_statement_new_full()
/dports/security/zaproxy/zaproxy-2.11.1/zap/src/main/java/org/zaproxy/zap/model/
H A DContext.java87 private AuthenticationMethod authenticationMethod = null; field in Context
107 this.authenticationMethod = new ManualAuthenticationMethod(id); in Context()
522 return authenticationMethod; in getAuthenticationMethod()
530 public void setAuthenticationMethod(AuthenticationMethod authenticationMethod) { in setAuthenticationMethod() argument
531 this.authenticationMethod = authenticationMethod; in setAuthenticationMethod()
887 newContext.authenticationMethod = this.authenticationMethod.clone(); in duplicate()
/dports/databases/hbase/hbase-1.2.1/hbase-client/src/main/java/org/apache/hadoop/hbase/security/
H A DAuthMethod.java39 public final UserGroupInformation.AuthenticationMethod authenticationMethod; field in AuthMethod
45 this.authenticationMethod = authMethod; in AuthMethod()
/dports/security/zaproxy/zaproxy-2.11.1/zap/src/main/java/org/zaproxy/zap/authentication/
H A DPostBasedAuthenticationMethodType.java203 PostBasedAuthenticationMethod authenticationMethod) { in PostBasedAuthenticationMethod() argument
206 if (authenticationMethod != null) { in PostBasedAuthenticationMethod()
207 this.loginRequestURL = authenticationMethod.loginRequestURL; in PostBasedAuthenticationMethod()
208 this.loginRequestBody = authenticationMethod.loginRequestBody; in PostBasedAuthenticationMethod()
209 this.loginSiteNode = authenticationMethod.loginSiteNode; in PostBasedAuthenticationMethod()
211 this.loginPageUrl = authenticationMethod.loginPageUrl; in PostBasedAuthenticationMethod()
712 private PostBasedAuthenticationMethod authenticationMethod; field in PostBasedAuthenticationMethodType.PostBasedAuthenticationMethodOptionsPanel
994 this.loginUrlField.setText(authenticationMethod.loginRequestURL); in bindMethod()
995 this.postDataField.setText(authenticationMethod.loginRequestBody); in bindMethod()
996 this.loginPageUrlField.setText(authenticationMethod.loginPageUrl); in bindMethod()
[all …]
/dports/converters/wkhtmltopdf/qt-5db36ec/src/network/ssl/
H A Dqsslcipher.cpp196 QString QSslCipher::authenticationMethod() const in authenticationMethod() function in QSslCipher
198 return d->authenticationMethod; in authenticationMethod()
/dports/textproc/py-sphinx-autoapi/sphinx-autoapi-1.8.4/tests/dotnetexample/example/Identity/src/Identity/
H A DSignInManager.cs164 … var authenticationMethod = auth?.Principal?.FindFirstValue(ClaimTypes.AuthenticationMethod); in RefreshSignInAsync()
165 await SignInAsync(user, auth?.Properties, authenticationMethod); in RefreshSignInAsync()
175 … public virtual Task SignInAsync(TUser user, bool isPersistent, string authenticationMethod = null) in SignInAsync() argument
177 …nInAsync(user, new AuthenticationProperties { IsPersistent = isPersistent }, authenticationMethod); in SignInAsync()
187 …(TUser user, AuthenticationProperties authenticationProperties, string authenticationMethod = null) in SignInAsync() argument
191 if (authenticationMethod != null) in SignInAsync()
193 …ipal.Identities.First().AddClaim(new Claim(ClaimTypes.AuthenticationMethod, authenticationMethod)); in SignInAsync()
/dports/databases/qt5-sqldrivers-sqlite2/kde-qtbase-5.15.2p263/src/network/ssl/
H A Dqsslcipher.cpp224 QString QSslCipher::authenticationMethod() const in authenticationMethod() function in QSslCipher
226 return d->authenticationMethod; in authenticationMethod()
/dports/databases/qt5-sqldrivers-tds/kde-qtbase-5.15.2p263/src/network/ssl/
H A Dqsslcipher.cpp224 QString QSslCipher::authenticationMethod() const in authenticationMethod() function in QSslCipher
226 return d->authenticationMethod; in authenticationMethod()
/dports/databases/qt5-sqldrivers-sqlite3/kde-qtbase-5.15.2p263/src/network/ssl/
H A Dqsslcipher.cpp224 QString QSslCipher::authenticationMethod() const in authenticationMethod() function in QSslCipher
226 return d->authenticationMethod; in authenticationMethod()
/dports/databases/qt5-sqldrivers-odbc/kde-qtbase-5.15.2p263/src/network/ssl/
H A Dqsslcipher.cpp224 QString QSslCipher::authenticationMethod() const in authenticationMethod() function in QSslCipher
226 return d->authenticationMethod; in authenticationMethod()
/dports/databases/qt5-sql/kde-qtbase-5.15.2p263/src/network/ssl/
H A Dqsslcipher.cpp224 QString QSslCipher::authenticationMethod() const in authenticationMethod() function in QSslCipher
226 return d->authenticationMethod; in authenticationMethod()
/dports/databases/qt5-sqldrivers-ibase/kde-qtbase-5.15.2p263/src/network/ssl/
H A Dqsslcipher.cpp224 QString QSslCipher::authenticationMethod() const in authenticationMethod() function in QSslCipher
226 return d->authenticationMethod; in authenticationMethod()
/dports/databases/qt5-sqldrivers-pgsql/kde-qtbase-5.15.2p263/src/network/ssl/
H A Dqsslcipher.cpp224 QString QSslCipher::authenticationMethod() const in authenticationMethod() function in QSslCipher
226 return d->authenticationMethod; in authenticationMethod()
/dports/databases/qt5-sqldrivers-mysql/kde-qtbase-5.15.2p263/src/network/ssl/
H A Dqsslcipher.cpp224 QString QSslCipher::authenticationMethod() const in authenticationMethod() function in QSslCipher
226 return d->authenticationMethod; in authenticationMethod()
/dports/net/qt5-network/kde-qtbase-5.15.2p263/src/network/ssl/
H A Dqsslcipher.cpp224 QString QSslCipher::authenticationMethod() const in authenticationMethod() function in QSslCipher
226 return d->authenticationMethod; in authenticationMethod()

12345678910>>...22