Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for SSE (0.03 sec)

  1. cmd/object-handlers.go

    			writeErrorResponse(ctx, w, toAPIError(ctx, err), r.URL)
    			return
    		}
    	}
    
    	// If src == dst and either
    	// - the object is encrypted using SSE-C and two different SSE-C keys are present
    	// - the object is encrypted using SSE-S3 and the SSE-S3 header is present
    	// - the object storage class is not changing
    	// then execute a key rotation.
    	if cpSrcDstSame && (sseCopyC && sseC) && !chStorageClass {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Jun 14 13:28:35 UTC 2024
    - 124.2K bytes
    - Viewed (0)
  2. cmd/bucket-replication.go

    		cHeader.Add(xhttp.MinIOSourceReplicationRequest, "true")
    		if !isSSEC {
    			crc := getCRCMeta(objInfo, partInfo.Number, nil) // No SSE-C keys here.
    			for k, v := range crc {
    				cHeader.Add(k, v)
    			}
    		}
    		popts := minio.PutObjectPartOptions{
    			SSE:          opts.ServerSideEncryption,
    			CustomHeader: cHeader,
    		}
    
    		if isSSEC {
    			objectSize += partInfo.Size
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 06:56:12 UTC 2024
    - 114.4K bytes
    - Viewed (0)
Back to top