Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 13 for isSigningEnforced (0.26 sec)

  1. src/main/java/jcifs/internal/smb1/com/SmbComNegotiate.java

                    "NT LM 0.12"
                };
            }
        }
    
    
        /**
         * {@inheritDoc}
         *
         * @see jcifs.internal.SmbNegotiationRequest#isSigningEnforced()
         */
        @Override
        public boolean isSigningEnforced () {
            return this.signingEnforced;
        }
    
    
        @Override
        protected int writeParameterWordsWireFormat ( byte[] dst, int dstIndex ) {
            return 0;
        }
    
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 3.3K bytes
    - Viewed (0)
  2. src/main/java/jcifs/internal/SmbNegotiationRequest.java

     */
    package jcifs.internal;
    
    
    /**
     * @author mbechler
     *
     */
    public interface SmbNegotiationRequest {
    
        /**
         * @return whether SMB singing is enforced
         */
        boolean isSigningEnforced ();
    
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 979 bytes
    - Viewed (0)
  3. src/main/java/jcifs/smb/SmbTransportPoolImpl.java

                            }
                            continue;
                        }
    
                        if ( !forceSigning && !tc.getConfig().isSigningEnforced() && conn.isSigningEnforced()
                                && !conn.getNegotiateResponse().isSigningRequired() ) {
                            // if signing is not enforced, dont use connections that have signing enforced
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Sun Dec 20 14:09:34 GMT 2020
    - 12.5K bytes
    - Viewed (0)
  4. src/main/java/jcifs/config/DelegatingConfiguration.java

            return this.delegate.isSigningEnabled();
        }
    
    
        /**
         * {@inheritDoc}
         *
         * @see jcifs.Configuration#isSigningEnforced()
         */
        @Override
        public boolean isSigningEnforced () {
            return this.delegate.isSigningEnforced();
        }
    
    
        /**
         * {@inheritDoc}
         *
         * @see jcifs.Configuration#isIpcSigningEnforced()
         */
        @Override
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Tue Jul 07 10:50:16 GMT 2020
    - 17.6K bytes
    - Viewed (1)
  5. src/main/java/jcifs/internal/smb2/nego/Smb2NegotiateRequest.java

        }
    
    
        /**
         * @return the securityMode
         */
        public int getSecurityMode () {
            return this.securityMode;
        }
    
    
        @Override
        public boolean isSigningEnforced () {
            return ( getSecurityMode() & Smb2Constants.SMB2_NEGOTIATE_SIGNING_REQUIRED ) != 0;
        }
    
    
        /**
         * @return the capabilities
         */
        public int getCapabilities () {
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 7.5K bytes
    - Viewed (0)
  6. src/main/java/jcifs/smb/SmbTransportInternal.java

         */
        boolean isSigningOptional () throws SmbException;
    
    
        /**
         * @return whether signatures are enforced from either side
         * @throws SmbException
         */
        boolean isSigningEnforced () throws SmbException;
    
    
        /**
         * @return the encryption key used by the server
         */
        byte[] getServerEncryptionKey ();
    
    
        /**
         * @param ctx
         * @return session
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 3K bytes
    - Viewed (0)
  7. src/main/java/jcifs/internal/smb1/com/SmbComNegotiateResponse.java

                return false;
            }
    
            if ( req.isSigningEnforced() || this.server.signaturesRequired || ( this.server.signaturesEnabled && ctx.getConfig().isSigningEnabled() ) ) {
                this.negotiatedFlags2 |= SmbConstants.FLAGS2_SECURITY_SIGNATURES;
                if ( req.isSigningEnforced() || isSigningRequired() ) {
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Tue Jul 07 10:52:42 GMT 2020
    - 15.4K bytes
    - Viewed (0)
  8. src/main/java/jcifs/internal/smb2/nego/Smb2NegotiateResponse.java

    
        @Override
        public boolean isValid ( CIFSContext tc, SmbNegotiationRequest req ) {
            if ( !isReceived() || getStatus() != 0 ) {
                return false;
            }
    
            if ( req.isSigningEnforced() && !isSigningEnabled() ) {
                log.error("Signing is enforced but server does not allow it");
                return false;
            }
    
            if ( getDialectRevision() == Smb2Constants.SMB2_DIALECT_ANY ) {
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Sun Mar 22 10:09:46 GMT 2020
    - 17.6K bytes
    - Viewed (0)
  9. src/main/java/jcifs/smb/SmbSessionImpl.java

    
        boolean isSignatureSetupRequired () throws SmbException {
            SMBSigningDigest cur = getDigest();
            if ( cur != null ) {
                return false;
            }
            else if ( this.transport.isSigningEnforced() ) {
                return true;
            }
            return this.transport.getNegotiateResponse().isSigningNegotiated();
        }
    
    
        /**
         * @param digest
         *            the digest to set
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Sun Nov 14 17:41:04 GMT 2021
    - 49K bytes
    - Viewed (0)
  10. src/main/java/jcifs/Configuration.java

    
        /**
         * 
         * Property <tt>jcifs.smb.client.signingEnforced</tt> (boolean, default false)
         * 
         * @return whether to enforce SMB signing (for everything)
         */
        boolean isSigningEnforced ();
    
    
        /**
         * Property <tt>jcifs.smb.client.encryptionEnabled</tt> (boolean, default false)
         * 
         * This is an experimental option allowing to indicate support during protocol
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Thu Jan 05 13:06:39 GMT 2023
    - 18K bytes
    - Viewed (0)
Back to top