Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 20 for SPNEGO (0.07 sec)

  1. src/main/java/org/codelibs/fess/sso/spnego/SpnegoAuthenticator.java

        protected static final String SPNEGO_ALLOW_BASIC = "spnego.allow.basic";
        protected static final String SPNEGO_PREAUTH_PASSWORD = "spnego.preauth.password";
        protected static final String SPNEGO_PREAUTH_USERNAME = "spnego.preauth.username";
        protected static final String SPNEGO_LOGIN_SERVER_MODULE = "spnego.login.server.module";
        protected static final String SPNEGO_LOGIN_CLIENT_MODULE = "spnego.login.client.module";
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 11.2K bytes
    - Viewed (0)
  2. src/main/java/jcifs/spnego/NegTokenInit.java

                    throw new IOException("Malformed SPNEGO token " + constructed);
    
                ASN1Sequence vec = (ASN1Sequence) constructed.getBaseObject();
    
    
                    ASN1ObjectIdentifier spnego = (ASN1ObjectIdentifier) vec.getObjectAt(0);
                    if ( !SPNEGO_OID.equals(spnego) ) {
                        throw new IOException("Malformed SPNEGO token, OID " + spnego);
                    }
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Oct 01 12:01:17 UTC 2023
    - 7.9K bytes
    - Viewed (0)
  3. src/main/java/jcifs/smb/SpnegoContext.java

    import org.slf4j.LoggerFactory;
    
    import jcifs.CIFSException;
    import jcifs.Configuration;
    import jcifs.spnego.NegTokenInit;
    import jcifs.spnego.NegTokenTarg;
    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 {
    
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Mon Jan 04 04:18:31 UTC 2021
    - 14.8K bytes
    - Viewed (0)
  4. src/main/java/jcifs/spnego/SpnegoConstants.java

     * License along with this library; if not, write to the Free Software
     * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
     */
    
    package jcifs.spnego;
    
    
    @SuppressWarnings ( "javadoc" )
    public interface SpnegoConstants {
    
        public static final String SPNEGO_MECHANISM = "1.3.6.1.5.5.2";
    
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 1.3K bytes
    - Viewed (0)
  5. src/main/resources/fess_sso++.xml

    	</component>
    	<component name="samlAuthenticator" class="org.codelibs.fess.sso.saml.SamlAuthenticator">
    	</component>
    	<component name="spnegoAuthenticator" class="org.codelibs.fess.sso.spnego.SpnegoAuthenticator">
    	</component>
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Sat Jul 04 00:28:21 UTC 2020
    - 604 bytes
    - Viewed (0)
  6. src/main/java/jcifs/spnego/SpnegoToken.java

     * License along with this library; if not, write to the Free Software
     * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
     */
    
    package jcifs.spnego;
    
    
    import java.io.IOException;
    
    
    @SuppressWarnings ( "javadoc" )
    public abstract class SpnegoToken {
    
        private byte[] mechanismToken;
    
        private byte[] mechanismListMIC;
    
    
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 1.6K bytes
    - Viewed (0)
  7. src/main/java/jcifs/spnego/SpnegoException.java

     * License along with this library; if not, write to the Free Software
     * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
     */
    package jcifs.spnego;
    
    
    import jcifs.CIFSException;
    
    
    /**
     * @author mbechler
     *
     */
    public class SpnegoException extends CIFSException {
    
        /**
         * 
         */
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 1.5K bytes
    - Viewed (0)
  8. src/main/java/jcifs/Configuration.java

         * 
         * @return whether to disable sending/verifying SPNEGO mechanismListMIC
         */
        boolean isDisableSpnegoIntegrity ();
    
    
        /**
         * 
         * Property <tt>jcifs.smb.client.enforceSpnegoIntegrity</tt> (boolean, false)
         * 
         * @return whether to enforce verifying SPNEGO mechanismListMIC
         */
        boolean isEnforceSpnegoIntegrity ();
    
    
        /**
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Thu Jan 05 13:06:39 UTC 2023
    - 18K bytes
    - Viewed (0)
  9. src/main/java/jcifs/smb1/smb1/SmbComNegotiateResponse.java

                }
            } else {
                server.guid = new byte[16];
                System.arraycopy(buffer, bufferIndex, server.guid, 0, 16); 
                server.oemDomainName = new String();
                // ignore SPNEGO token for now ...
            }
    
            return bufferIndex - start;
        }
        public String toString() {
            return new String( "SmbComNegotiateResponse[" +
                super.toString() +
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Fri Mar 22 21:10:40 UTC 2019
    - 6.1K bytes
    - Viewed (0)
  10. src/main/java/jcifs/spnego/NegTokenTarg.java

     * License along with this library; if not, write to the Free Software
     * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
     */
    
    package jcifs.spnego;
    
    
    import java.io.ByteArrayOutputStream;
    import java.io.IOException;
    import java.util.Enumeration;
    
    import org.bouncycastle.asn1.ASN1EncodableVector;
    import org.bouncycastle.asn1.ASN1Encoding;
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Mon Jan 04 04:18:31 UTC 2021
    - 5.4K bytes
    - Viewed (0)
Back to top