Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 41 for downgrade (0.2 sec)

  1. src/main/java/jcifs/Configuration.java

    
        /**
         * Enforce secure negotiation
         * 
         * Property <tt>jcifs.smb.client.requireSecureNegotiate</tt> (boolean, default true)
         * 
         * This does not provide any actual downgrade protection if SMB1 is allowed.
         * 
         * It will also break connections with SMB2 servers that do not properly sign error responses.
         * 
         * @return whether to enforce the use of secure negotiation.
         */
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Thu Jan 05 13:06:39 UTC 2023
    - 18K bytes
    - Viewed (0)
  2. src/crypto/tls/handshake_client.go

    	}
    
    	if err := c.pickTLSVersion(serverHello); err != nil {
    		return err
    	}
    
    	// If we are negotiating a protocol version that's lower than what we
    	// support, check for the server downgrade canaries.
    	// See RFC 8446, Section 4.1.3.
    	maxVers := c.config.maxSupportedVersion(roleClient)
    	tls12Downgrade := string(serverHello.random[24:]) == downgradeCanaryTLS12
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 38.6K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/jvm/scala_plugin.adoc

    The solution is then to either use the right Java version in the toolchain or explicitly downgrade the target when needed.
    
    The following table explains the values computed by Gradle:
    
    .Scala target parameter based on project configuration
    [%header%autowidth,compact]
    |===
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 29 17:38:38 UTC 2023
    - 17K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/types2/check.go

    				//
    				// Go 1.21 also introduced the feature of allowing //go:build lines
    				// to “downgrade” (cmp < 0) the Go version in a given file.
    				// That can't be done compatibly in general, since before the
    				// build lines were ignored and code got the module's Go version.
    				// To work around this, downgrades are only allowed when the
    				// module's Go version is Go 1.21 or later.
    				//
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 23.3K bytes
    - Viewed (0)
  5. src/go/types/check.go

    				//
    				// Go 1.21 also introduced the feature of allowing //go:build lines
    				// to “downgrade” (cmp < 0) the Go version in a given file.
    				// That can't be done compatibly in general, since before the
    				// build lines were ignored and code got the module's Go version.
    				// To work around this, downgrades are only allowed when the
    				// module's Go version is Go 1.21 or later.
    				//
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 23.1K bytes
    - Viewed (0)
  6. src/crypto/tls/cipher_suites.go

    // any higher one is available. This makes it more defensible to keep weaker
    // cipher suites enabled, especially on the server side where we get the last
    // word, since there are no known downgrade attacks on cipher suites selection.
    //
    // The list is sorted by applying the following priority rules, stopping at the
    // first (most important) applicable one:
    //
    //   - Anything else comes before RC4
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 25.5K bytes
    - Viewed (0)
  7. src/cmd/go/internal/toolchain/select.go

    		// will invoke Go 1.23, but as the Go 1.23 child the reason for that
    		// will not be apparent here: it will look like we should be using Go 1.22.
    		// We rely on the targetEnv being set to know not to downgrade.
    		// A longer term problem with the sanity check is that the exact details
    		// may change over time: there may be other reasons that a future Go
    		// version might invoke an older one, and the older one won't know why.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 17:25:05 UTC 2024
    - 23.4K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/userguide/dep-man/03-controlling-transitive-dependencies/resolution_rules.adoc

    * Avoid dependencies that pull in legacy libraries.
    * Upgrade the dependency version if the new version no longer pulls in a legacy library.
    * Downgrade to `google-collections`. It's not recommended, just mentioned for completeness.
    
    Traditional approaches work but they are not general enough.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 17 00:09:06 UTC 2024
    - 30.1K bytes
    - Viewed (0)
  9. android/guava/src/com/google/common/net/HttpHeaders.java

        private ReferrerPolicyValues() {}
    
        public static final String NO_REFERRER = "no-referrer";
        public static final String NO_REFFERER_WHEN_DOWNGRADE = "no-referrer-when-downgrade";
        public static final String SAME_ORIGIN = "same-origin";
        public static final String ORIGIN = "origin";
        public static final String STRICT_ORIGIN = "strict-origin";
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed May 01 18:44:57 UTC 2024
    - 34.3K bytes
    - Viewed (0)
  10. guava/src/com/google/common/net/HttpHeaders.java

        private ReferrerPolicyValues() {}
    
        public static final String NO_REFERRER = "no-referrer";
        public static final String NO_REFFERER_WHEN_DOWNGRADE = "no-referrer-when-downgrade";
        public static final String SAME_ORIGIN = "same-origin";
        public static final String ORIGIN = "origin";
        public static final String STRICT_ORIGIN = "strict-origin";
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed May 01 18:44:57 UTC 2024
    - 34.3K bytes
    - Viewed (0)
Back to top