- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 105 for mechanisms (0.07 sec)
-
src/main/java/jcifs/spnego/NegTokenInit.java
* Gets the array of supported authentication mechanisms * @return the mechanisms array */ public ASN1ObjectIdentifier[] getMechanisms() { return this.mechanisms; } /** * Sets the array of supported authentication mechanisms * @param mechanisms the mechanisms to set */ public void setMechanisms(final ASN1ObjectIdentifier[] mechanisms) { this.mechanisms = mechanisms;
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 10.3K bytes - Viewed (0) -
src/test/java/jcifs/spnego/NegTokenInitTest.java
@DisplayName("Various mechanism combinations round-trip correctly") void testMechanismCombinations(ASN1ObjectIdentifier[] mechanisms) throws Exception { NegTokenInit init = new NegTokenInit(mechanisms, 0, null, null); byte[] encoded = init.toByteArray(); NegTokenInit parsed = new NegTokenInit(encoded); if (mechanisms == null) {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 21K bytes - Viewed (0) -
src/main/java/jcifs/smb/SSPContext.java
/** * Checks whether the specified security mechanism is supported. * @param mechanism the security mechanism OID to check * @return whether the specified mechanism is supported */ boolean isSupported(ASN1ObjectIdentifier mechanism); /** * Checks whether the specified mechanism is the preferred mechanism. * @param selectedMech the selected mechanism OID
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 3.9K bytes - Viewed (0) -
src/test/java/jcifs/smb/Kerb5AuthenticatorTest.java
CIFSContext tc; @Mock Configuration config; private static byte[] spnegoInitWithMechs(ASN1ObjectIdentifier... mechs) { // Build a minimal SPNEGO NegTokenInit containing the provided mechanisms NegTokenInit tok = new NegTokenInit(mechs, 0, null, null); return tok.toByteArray(); } @Test @DisplayName("createContext: rejects NetBIOS/short host names")
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 10.9K bytes - Viewed (0) -
src/main/java/jcifs/dcerpc/DcerpcSecurityProvider.java
*/ package jcifs.dcerpc; import jcifs.dcerpc.ndr.NdrBuffer; /** * Interface for providing security services for DCE/RPC communications. * This interface abstracts authentication and encryption mechanisms. */ public interface DcerpcSecurityProvider { /** * Wraps outgoing DCERPC message data for security protection * @param outgoing the buffer containing data to be wrapped
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 1.6K bytes - Viewed (0) -
android/guava-tests/benchmark/com/google/common/util/concurrent/FuturesGetCheckedBenchmark.java
* whether our solution scales to use with multiple exception types and to whether it is affected * by other {@code ClassValue} users. Some of the benchmarked implementations don't use one or * both of these mechanisms, so they will be unaffected. */ @Param({"0", "1", "12"}) int otherEntriesInDataStructure; final List<ClassValue<?>> retainedReferencesToOtherClassValues = new ArrayList<>(); @BeforeExperiment
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Tue May 13 17:27:14 UTC 2025 - 6.5K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/sso/SsoAuthenticator.java
* * This interface defines the contract for SSO authentication providers that can be * integrated with Fess. Implementations handle specific SSO protocols like SAML, * OAuth, SPNEGO, or other authentication mechanisms. Each authenticator is responsible * for obtaining login credentials, resolving user information, and managing SSO * lifecycle operations like logout and metadata exchange. */ public interface SsoAuthenticator {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 2.2K bytes - Viewed (0) -
src/main/java/jcifs/netbios/UniAddress.java
* handled internally to the <code>jcifs.smb</code> package. * <p> * This class is a wrapper for both {@link jcifs.netbios.NbtAddress} * and {@link java.net.InetAddress}. The name resolution mechanisms * used will systematically query all available configured resolution * services including WINS, broadcasts, DNS, and LMHOSTS. See * <a href="../../resolver.html">Setting Name Resolution Properties</a>
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 8.3K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb2/rdma/RdmaErrorHandler.java
import org.slf4j.Logger; import org.slf4j.LoggerFactory; /** * RDMA error handling and recovery logic. * * This class provides centralized error handling for RDMA operations, * including retry logic and fallback mechanisms. */ public class RdmaErrorHandler { private static final Logger log = LoggerFactory.getLogger(RdmaErrorHandler.class); // Retry and timing constants (in ms)
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 30 05:58:03 UTC 2025 - 10.5K bytes - Viewed (0) -
okhttp/src/commonJvmAndroid/kotlin/okhttp3/internal/tls/BasicCertificateChainCleaner.kt
/** * A certificate chain cleaner that uses a set of trusted root certificates to build the trusted * chain. This class duplicates the clean chain building performed during the TLS handshake. We * prefer other mechanisms where they exist, such as with * [okhttp3.internal.platform.AndroidPlatform.AndroidCertificateChainCleaner]. * * This class includes code from [Conscrypt's][Conscrypt] [TrustManagerImpl] and * [TrustedCertificateIndex].
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Wed Mar 19 19:25:20 UTC 2025 - 4.8K bytes - Viewed (0)