- Sort Score
- Result 10 results
- Languages All
Results 1 - 5 of 5 for gssContext (0.83 sec)
-
src/test/java/jcifs/smb/Kerb5ContextTest.java
void getFlags_allFalse() { when(gssContext.getCredDelegState()).thenReturn(false); when(gssContext.getMutualAuthState()).thenReturn(false); when(gssContext.getReplayDetState()).thenReturn(false); when(gssContext.getSequenceDetState()).thenReturn(false); when(gssContext.getAnonymityState()).thenReturn(false); when(gssContext.getConfState()).thenReturn(false);
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 07:14:38 UTC 2025 - 14.2K bytes - Viewed (0) -
src/main/java/jcifs/smb/Kerb5Context.java
this.clientName = null; } this.gssContext = manager.createContext(this.serviceName, mechOid, clientCreds, contextLifetime); this.gssContext.requestAnonymity(false); this.gssContext.requestSequenceDet(false); this.gssContext.requestConf(false); this.gssContext.requestInteg(false); this.gssContext.requestReplayDet(false); // per spec these should be set
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 07:14:38 UTC 2025 - 13.5K bytes - Viewed (1) -
src/main/java/jcifs/smb/Kerb5Authenticator.java
} /** * Set the user name which is used to setup <code>GSSContext</code>. If null * is set, the default user will be used which is retrieved from the first * TGT found in <code>Subject</code> . * * @param name * the user name used to setup <code>GSSContext</code> */ public void setUser(String name) { this.user = name; }
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 13.2K bytes - Viewed (0) -
src/main/java/jcifs/smb/MIEName.java
package jcifs.smb; import java.util.Objects; import org.bouncycastle.asn1.ASN1ObjectIdentifier; /** * This class is used to parse the name of context initiator and * context acceptor which are retrieved from GSSContext. * * @author Shun * */ class MIEName { private static byte[] TOK_ID = { 04, 01 }; private static int TOK_ID_SIZE = 2; private static int MECH_OID_LEN_SIZE = 2;
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 07:14:38 UTC 2025 - 3.5K bytes - Viewed (0) -
src/main/java/jcifs/smb/SpnegoContext.java
*/ @Override public byte[] getSigningKey() throws CIFSException { return this.mechContext.getSigningKey(); } /** * Initialize the GSSContext to provide SPNEGO feature. * * @param inputBuf * @param offset * @param len * @return response token */ @Override
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 07:14:38 UTC 2025 - 14.5K bytes - Viewed (0)