Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 9 of 9 for isObject (0.36 sec)

  1. src/test/java/jcifs/tests/KerberosTest.java

            /**
             * 
             */
            private static final long serialVersionUID = -4979600496889213143L;
    
    
            public RefreshableKerb5Authenticator ( Subject subject, String domain, String username, String password ) {
                super(subject, domain, username, password);
            }
    
    
            @Override
            public void refresh () throws CIFSException {
                try {
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Sun Mar 01 09:46:04 GMT 2020
    - 11.5K bytes
    - Viewed (0)
  2. src/main/java/jcifs/smb/NtlmPasswordAuthenticator.java

    import java.security.MessageDigest;
    import java.security.Principal;
    import java.util.Arrays;
    import java.util.HashSet;
    import java.util.Objects;
    import java.util.Set;
    
    import javax.security.auth.Subject;
    
    import org.bouncycastle.asn1.ASN1ObjectIdentifier;
    import org.slf4j.Logger;
    import org.slf4j.LoggerFactory;
    
    import jcifs.CIFSContext;
    import jcifs.CIFSException;
    import jcifs.Credentials;
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Tue Jul 07 12:07:20 GMT 2020
    - 18.8K bytes
    - Viewed (0)
  3. src/main/java/jcifs/smb/Kerb5Authenticator.java

                throw new SmbException("Context setup failed", e);
            }
        }
    
    
        /**
         * @param subject
         *            the subject to set
         */
        protected void setSubject ( Subject subject ) {
            this.subject = subject;
        }
    
    
        @Override
        public void refresh () throws CIFSException {
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 13K bytes
    - Viewed (0)
  4. src/main/java/jcifs/pac/kerberos/KerberosCredentials.java

    import java.util.List;
    import java.util.Set;
    
    import javax.security.auth.Subject;
    import javax.security.auth.kerberos.KerberosKey;
    import javax.security.auth.kerberos.KeyTab;
    import javax.security.auth.login.LoginContext;
    import javax.security.auth.login.LoginException;
    
    
    @SuppressWarnings ( "javadoc" )
    public class KerberosCredentials {
    
        private Subject subject;
    
    
        public KerberosCredentials () throws LoginException {
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Mon Oct 02 12:02:06 GMT 2023
    - 2.4K bytes
    - Viewed (0)
  5. src/main/java/jcifs/smb/JAASAuthenticator.java

    	    }
                lc.login();
    
                Subject s = lc.getSubject();
                if ( log.isDebugEnabled() ) {
                    log.debug("Got subject: " + s.getPrincipals());
                }
                if ( log.isTraceEnabled() ) {
                    log.trace("Got subject " + s);
                }
    
                this.cachedSubject = s;
                return this.cachedSubject;
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 8.1K bytes
    - Viewed (0)
  6. src/main/java/jcifs/smb/SmbSessionImpl.java

                }
            }
        }
    
    
        private static byte[] createToken ( final SSPContext ctx, final byte[] token, Subject s ) throws CIFSException {
            if ( s != null ) {
                try {
                    return Subject.doAs(s, new PrivilegedExceptionAction<byte[]>() {
    
                        @Override
                        public byte[] run () throws Exception {
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Sun Nov 14 17:41:04 GMT 2021
    - 49K bytes
    - Viewed (0)
  7. LICENSE

      10. Each time you redistribute the Library (or any work based on the
    Library), the recipient automatically receives a license from the
    original licensor to copy, distribute, link with or modify the Library
    subject to these terms and conditions.  You may not impose any further
    restrictions on the recipients' exercise of the rights granted herein.
    You are not responsible for enforcing compliance by third parties with
    this License.
    
    Plain Text
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Mon Jan 18 20:25:38 GMT 2016
    - 25.8K bytes
    - Viewed (0)
  8. src/main/java/jcifs/smb/CredentialsInternal.java

         */
        SSPContext createContext ( CIFSContext tc, String targetDomain, String host, byte[] initialToken, boolean doSigning ) throws SmbException;
    
    
        /**
         * @return subject associated with the credentials
         */
        Subject getSubject ();
    
    
        /**
         * @throws CIFSException
         * 
         */
        void refresh () throws CIFSException;
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 1.6K bytes
    - Viewed (0)
  9. src/main/java/jcifs/smb/Kerb5Context.java

            }
        }
    
    
        Key searchSessionKey ( Subject subject ) throws GSSException {
            MIEName src = new MIEName(this.gssContext.getSrcName().export());
            MIEName targ = new MIEName(this.gssContext.getTargName().export());
    
            ASN1ObjectIdentifier mech = ASN1ObjectIdentifier.getInstance(this.gssContext.getMech().getDER());
            for ( KerberosTicket ticket : subject.getPrivateCredentials(KerberosTicket.class) ) {
    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)
Back to top