Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for Thun (0.17 sec)

  1. src/main/java/jcifs/smb/SpnegoContext.java

    import jcifs.spnego.SpnegoException;
    import jcifs.spnego.SpnegoToken;
    import jcifs.util.Hexdump;
    
    
    /**
     * This class used to wrap a {@link SSPContext} to provide SPNEGO feature.
     * 
     * @author Shun
     *
     */
    class SpnegoContext implements SSPContext {
    
        private static final Logger log = LoggerFactory.getLogger(SpnegoContext.class);
    
        private static ASN1ObjectIdentifier SPNEGO_MECH_OID;
    
        static {
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Mon Jan 04 04:18:31 GMT 2021
    - 14.8K bytes
    - Viewed (0)
  2. src/main/java/jcifs/smb/MIEName.java

    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 May 05 00:10:10 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 3.5K bytes
    - Viewed (0)
  3. src/main/java/jcifs/smb/Kerb5Context.java

    import org.slf4j.Logger;
    import org.slf4j.LoggerFactory;
    
    import jcifs.CIFSException;
    import jcifs.spnego.NegTokenInit;
    
    
    /**
     * This class used to provide Kerberos feature when setup GSSContext.
     * 
     * @author Shun
     */
    class Kerb5Context implements SSPContext {
    
        private static final Logger log = LoggerFactory.getLogger(Kerb5Context.class);
    
        private static final ASN1ObjectIdentifier KRB5_MECH_OID;
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Thu Aug 02 08:22:42 GMT 2018
    - 13.9K bytes
    - Viewed (0)
  4. src/main/java/jcifs/smb/SecurityBlob.java

     */
    package jcifs.smb;
    
    
    /**
     * This class represents the Secrity_Blob in SMB Block and is set to support
     * kerberos authentication.
     * 
     * @author Shun
     *
     */
    class SecurityBlob {
    
        private byte[] b = new byte[0];
    
    
        SecurityBlob () {}
    
    
        SecurityBlob ( byte[] b ) {
            set(b);
        }
    
    
        void set ( byte[] b ) {
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 2.5K bytes
    - Viewed (0)
Back to top