- Sort Score
- Result 10 results
- Languages All
Results 201 - 210 of 462 for authenticator (0.08 sec)
-
compat/maven-compat/src/main/java/org/apache/maven/repository/legacy/LegacyRepositorySystem.java
} } Authentication authentication = new Authentication(server.getUsername(), server.getPassword()); authentication.setPrivateKey(server.getPrivateKey()); authentication.setPassphrase(server.getPassphrase()); repository.setAuthentication(authentication); } else {
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Fri Jun 06 14:28:57 UTC 2025 - 31.2K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/helper/CurlHelperTest.java
CurlRequest processedRequest = callProtectedRequest(curlHelper, request); assertNotNull(processedRequest); // The protected request method should process the request and add authentication // We verify that the method completed without errors } public void test_request_withoutAuth() { setupMockConfig("localhost:9200", "", ""); curlHelper.init();
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Jul 12 05:35:01 UTC 2025 - 10.1K 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) -
src/main/java/org/codelibs/fess/app/web/api/admin/webauth/SearchBody.java
import org.codelibs.fess.app.web.api.admin.BaseSearchBody; /** * Search request body for web authentication administration API. */ public class SearchBody extends BaseSearchBody { /** * Default constructor. */ public SearchBody() { super(); } /** Web authentication configuration ID */ public String id;
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 1K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/client/ftp/FtpAuthentication.java
import org.apache.logging.log4j.Logger; import org.codelibs.core.lang.StringUtil; /** * FtpAuthentication class holds the authentication information for FTP connections. * It includes server address, port number, username, and password. * It also provides a method to check if the authentication matches a given FTP path. * * @author shinsuke */ public class FtpAuthentication {
Registered: Sun Sep 21 03:50:09 UTC 2025 - Last Modified: Sun Jul 06 02:13:03 UTC 2025 - 3.7K 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/internal/smb2/Smb3KeyDerivation.java
* * @param dialect the SMB dialect version * @param sessionKey the base session key * @param preauthIntegrity the pre-authentication integrity hash (for SMB 3.1.1) or null * @return derived signing key */ public static byte[] deriveSigningKey(final int dialect, final byte[] sessionKey, final byte[] preauthIntegrity) {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 6.5K bytes - Viewed (0) -
CHANGELOG/CHANGELOG-1.29.md
Registered: Fri Sep 05 09:05:11 UTC 2025 - Last Modified: Wed Mar 12 00:36:01 UTC 2025 - 429.6K bytes - Viewed (1) -
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)