Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for GSSContext (0.22 sec)

  1. 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
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Thu Aug 02 08:22:42 GMT 2018
    - 13.9K bytes
    - Viewed (0)
  2. 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;
        }
    
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 13K bytes
    - Viewed (0)
  3. src/main/java/jcifs/smb/MIEName.java

    
    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;
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 3.5K bytes
    - Viewed (0)
  4. 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
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Mon Jan 04 04:18:31 GMT 2021
    - 14.8K bytes
    - Viewed (0)
Back to top