- Sort Score
- Result 10 results
- Languages All
Results 91 - 100 of 349 for Authentication (0.31 sec)
-
docs/logging/README.md
sasl_username (string) username for SASL/PLAIN or SASL/SCRAM authentication sasl_password (string) password for SASL/PLAIN or SASL/SCRAM authentication sasl_mechanism (string) sasl authentication mechanism, default 'plain' tls_client_auth (string) clientAuth determines the Kafka server's policy for TLS client auth sasl (on|off) set to 'on' to enable SASL authentication tls (on|off) set to 'on' to enable TLS
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Tue Aug 12 18:20:36 UTC 2025 - 10.5K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/opensearch/config/exentity/WebConfigTest.java
import org.codelibs.fess.app.service.RequestHeaderService; import org.codelibs.fess.app.service.WebAuthenticationService; import org.codelibs.fess.crawler.client.CrawlerClientFactory; import org.codelibs.fess.crawler.client.http.Authentication; import org.codelibs.fess.crawler.client.http.HcHttpClient; import org.codelibs.fess.helper.SystemHelper; import org.codelibs.fess.mylasta.direction.FessConfig; import org.codelibs.fess.mylasta.direction.FessProp;
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Mar 15 06:53:53 UTC 2025 - 7.6K bytes - Viewed (0) -
src/main/java/jcifs/config/BaseConfiguration.java
/** Whether to send NTLM target name during authentication */ protected boolean sendNTLMTargetName = true; private byte[] machineId; /** Username for guest authentication */ protected String guestUsername = "GUEST"; /** Password for guest authentication */ protected String guestPassword = ""; /** Whether to allow fallback to guest authentication */ protected boolean allowGuestFallback = false;
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sun Aug 31 08:00:57 UTC 2025 - 36.5K bytes - Viewed (0) -
cmd/sftp-server_test.go
_, err = sshPasswordAuth(newSSHCon, []byte("dillon")) if err != nil { c.Fatal("Password authentication failed for user (dillon):", err) } newSSHCon = newSSHConnMock("dillon") _, err = sshPasswordAuth(newSSHCon, []byte("dillon")) if err != nil { c.Fatal("Password authentication failed for user (dillon):", err) } } { userDN := "uid=fahim,ou=people,ou=swengg,dc=min,dc=io"
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Thu Feb 27 18:43:32 UTC 2025 - 9.7K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/Constants.java
// Authentication Type Constants // ============================================================ /** Basic authentication type identifier. */ public static final String BASIC = "BASIC"; /** Digest authentication type identifier. */ public static final String DIGEST = "DIGEST"; /** NTLM authentication type identifier. */
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 34.6K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/opensearch/config/exentity/WebConfig.java
final List<Authentication> basicAuthList = new ArrayList<>(); for (final WebAuthentication webAuth : webAuthList) { basicAuthList.add(webAuth.getAuthentication()); } paramMap.put(HcHttpClient.AUTHENTICATIONS_PROPERTY, basicAuthList.toArray(new Authentication[basicAuthList.size()])); // request header
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Mar 15 06:53:53 UTC 2025 - 9.9K bytes - Viewed (0) -
src/main/java/jcifs/smb1/smb1/SigningDigest.java
} } /** * Constructs a new signing digest using transport and authentication credentials. * * @param transport the SMB transport for this signing context * @param auth the NTLM password authentication credentials * @throws SmbException if MD5 algorithm is not available or key generation fails */
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 7.9K bytes - Viewed (0) -
src/main/java/jcifs/smb1/https/Handler.java
*/ package jcifs.smb1.https; /** * A <code>URLStreamHandler</code> used to provide NTLM authentication * capabilities to the default HTTPS handler. This acts as a wrapper, * handling authentication and passing control to the underlying * stream handler. */ public class Handler extends jcifs.smb1.http.Handler { /**
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 1.6K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/service/FileConfigService.java
* Provides access to the file configuration entity operations. */ @Resource protected FileConfigBhv fileConfigBhv; /** * Behavior class for file authentication database operations. * Manages authentication configurations associated with file configurations. */ @Resource protected FileAuthenticationBhv fileAuthenticationBhv; /**
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 7.4K bytes - Viewed (0) -
src/test/java/jcifs/http/NtlmSspTest.java
// Verify assertNotNull(result, "Authentication result should not be null"); assertEquals("DOMAIN", result.getUserDomain()); assertEquals("user", result.getUsername()); // Cannot verify challenge and responses as they are not exposed in the API // Verify that the response is not modified for a successful authentication
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 21 04:51:33 UTC 2025 - 11.4K bytes - Viewed (0)