Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for ParseSSECopyCustomerRequest (0.37 sec)

  1. cmd/encryption-v1.go

    	// object into parts in PutObject()
    	return len(o.ETag) != 32
    }
    
    // ParseSSECopyCustomerRequest parses the SSE-C header fields of the provided request.
    // It returns the client provided key on success.
    func ParseSSECopyCustomerRequest(h http.Header, metadata map[string]string) (key []byte, err error) {
    	if crypto.S3.IsEncrypted(metadata) && crypto.SSECopy.IsRequested(h) {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 06:56:12 UTC 2024
    - 37.1K bytes
    - Viewed (0)
  2. cmd/object-handlers.go

    	// - the object storage class is not changing
    	// then execute a key rotation.
    	if cpSrcDstSame && (sseCopyC && sseC) && !chStorageClass {
    		oldKey, err = ParseSSECopyCustomerRequest(r.Header, srcInfo.UserDefined)
    		if err != nil {
    			writeErrorResponse(ctx, w, toAPIError(ctx, err), r.URL)
    			return
    		}
    
    		for k, v := range srcInfo.UserDefined {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Jun 14 13:28:35 UTC 2024
    - 124.2K bytes
    - Viewed (0)
Back to top