Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 52 for compromised (0.22 sec)

  1. okhttp-tls/src/main/kotlin/okhttp3/tls/HandshakeCertificates.kt

         * Most TLS clients that connect to hosts on the public Internet should call this method.
         * Otherwise it is necessary to manually prepare a comprehensive set of trusted roots.
         *
         * If the host platform is compromised or misconfigured this may contain untrustworthy root
         * certificates. Applications that connect to a known set of servers may be able to mitigate
         * this problem with [certificate pinning][CertificatePinner].
         */
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 8.5K bytes
    - Viewed (0)
  2. mvnw

        exit 1
      fi
      if [ $wrapperSha256Result = false ]; then
        echo "Error: Failed to validate Maven wrapper SHA-256, your Maven wrapper might be compromised." >&2
        echo "Investigate or delete $wrapperJarPath to attempt a clean download." >&2
        echo "If you updated your Maven version, you need to update the specified wrapperSha256Sum property." >&2
        exit 1
      fi
    fi
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Oct 16 20:48:20 UTC 2023
    - 11K bytes
    - Viewed (0)
  3. src/crypto/cipher/gcm.go

    		return nil, errors.New("cipher: incorrect tag size given to GCM")
    	}
    
    	if nonceSize <= 0 {
    		return nil, errors.New("cipher: the nonce can't have zero length, or the security of the key will be immediately compromised")
    	}
    
    	if cipher, ok := cipher.(gcmAble); ok {
    		return cipher.NewGCM(nonceSize, tagSize)
    	}
    
    	if cipher.BlockSize() != gcmBlockSize {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 18:57:38 UTC 2024
    - 13.7K bytes
    - Viewed (0)
  4. architecture/ambient/ztunnel.md

    Critically, the CA must enforce that the ztunnel has permission to request that identity.
    Requests for identities not running on the node are rejected.
    This is critical to ensure that a compromised node does not compromise the entire mesh.
    
    This CA enforcement is done by Istio's CA, and is a requirement for any alternative CAs integrating with Ztunnel.
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 25 22:35:16 UTC 2024
    - 16.6K bytes
    - Viewed (0)
  5. src/go/internal/gcimporter/iimport.go

    )
    
    // iImportData imports a package from the serialized package data
    // and returns the number of bytes consumed and a reference to the package.
    // If the export data version is not recognized or the format is otherwise
    // compromised, an error is returned.
    func iImportData(fset *token.FileSet, imports map[string]*types.Package, dataReader *bufio.Reader, path string) (pkg *types.Package, err error) {
    	const currentVersion = iexportVersionCurrent
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 19.2K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/reference/gradle_wrapper.adoc

    Try to find out how it was generated but treat it as untrustworthy until proven otherwise.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 04 16:15:50 UTC 2024
    - 20.7K bytes
    - Viewed (0)
  7. cmd/encryption-v1.go

    	errKMSDefaultKeyAlreadyConfigured = errors.New("A default encryption already exists on KMS")
    	// Additional MinIO errors for SSE-C requests.
    	errObjectTampered = errors.New("The requested object was modified and may be compromised")
    	// error returned when invalid encryption parameters are specified
    	errInvalidEncryptionParameters     = errors.New("The encryption parameters are not applicable to this object")
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 06:56:12 UTC 2024
    - 37.1K bytes
    - Viewed (0)
  8. src/crypto/tls/common.go

    // all have the same session ticket keys. If the session ticket keys leaks,
    // previously recorded and future TLS connections using those keys might be
    // compromised.
    func (c *Config) SetSessionTicketKeys(keys [][32]byte) {
    	if len(keys) == 0 {
    		panic("tls: keys must have at least one key")
    	}
    
    	newKeys := make([]ticketKey, len(keys))
    	for i, bytes := range keys {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 59.1K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/docs/userguide/authoring-builds/best-practices/organizing_gradle_projects.adoc

    When declaring the outputs of a task, make sure that the directory for writing outputs is unique among all the tasks in your project.
    
    Intermingling or overwriting output files produced by different tasks compromises up-to-date checking causing slower builds.
    In turn, these filesystem changes may prevent Gradle's <<build_cache.adoc#build_cache,build cache>> from properly identifying and caching what would otherwise be cacheable tasks.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 23 08:16:36 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  10. src/runtime/internal/sys/nih.go

    // it for low-level internal structures to avoid memory barriers in the
    // scheduler and the memory allocator where they are illegal or simply
    // inefficient. This mechanism is reasonably safe and does not compromise
    // the readability of the runtime.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 02 18:24:50 UTC 2022
    - 1.7K bytes
    - Viewed (0)
Back to top