Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for encryptedETag (0.08 sec)

  1. cmd/encryption-v1.go

    func tryDecryptETag(key []byte, encryptedETag string, sses3 bool) string {
    	// ETag for SSE-C or SSE-KMS encrypted objects need not be content MD5Sum.While encrypted
    	// md5sum is stored internally, return just the last 32 bytes of hex-encoded and
    	// encrypted md5sum string for SSE-C
    	if !sses3 {
    		return encryptedETag[len(encryptedETag)-32:]
    	}
    	var objectKey crypto.ObjectKey
    	copy(objectKey[:], key)
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Sun Oct 13 13:06:08 UTC 2024
    - 37.2K bytes
    - Viewed (0)
Back to top