Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for supporting (0.87 sec)

  1. docs/changelogs/changelog_3x.md

    
    ## Version 3.12.10
    
    _2020-02-29_
    
     *  Fix: Don't crash on Android 4.1 when detecting methods that became restricted in Android 11.
        Supporting a full decade of Android releases on our 3.12.x branch is tricky!
    
    
    ## Version 3.12.9
    
    _2020-02-24_
    
     *  Fix: Don't crash on Android 11 due to use of restricted methods. This prevents a crash with the
    Plain Text
    - Registered: Fri Apr 26 11:42:10 GMT 2024
    - Last Modified: Sun Feb 06 14:55:54 GMT 2022
    - 50.8K bytes
    - Viewed (0)
  2. cmd/test-utils_test.go

    	}
    	req.Header.Set("x-amz-content-sha256", hashedPayload)
    
    	// Add Content-Length
    	req.ContentLength = contentLength
    
    	return req, nil
    }
    
    // Various signature types we are supporting, currently
    // two main signature types.
    type signerType int
    
    const (
    	signerV2 signerType = iota
    	signerV4
    )
    
    Go
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Thu Apr 04 12:06:57 GMT 2024
    - 75.7K bytes
    - Viewed (0)
  3. cmd/admin-handlers.go

    			encStream.Close()
    			stream.AddError(msg)
    		}
    		defer encStream.Close()
    
    		inspectZipW = zip.NewWriter(encStream)
    		defer inspectZipW.Close()
    	} else {
    		// Legacy: Remove if we stop supporting inspection without public key.
    		var key [32]byte
    		// MUST use crypto/rand
    		n, err := crand.Read(key[:])
    		if err != nil || n != len(key) {
    			bugLogIf(ctx, err)
    Go
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Sun Apr 21 11:43:18 GMT 2024
    - 97.3K bytes
    - Viewed (2)
Back to top