Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for SSE (0.02 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)
  3. cmd/site-replication.go

    		if err != nil {
    			return wrapSRErr(err)
    		}
    		return nil
    	}
    
    	return nil
    }
    
    // PeerBucketSSEConfigHandler - copies/deletes SSE config to local cluster.
    func (c *SiteReplicationSys) PeerBucketSSEConfigHandler(ctx context.Context, bucket string, sseConfig *string, updatedAt time.Time) error {
    	// skip overwrite if local update is newer than peer update.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 184.3K bytes
    - Viewed (0)
  4. src/vendor/golang.org/x/crypto/chacha20poly1305/chacha20poly1305_amd64.s

    #define itr1 CX // general iterator
    #define acc0 R10
    #define acc1 R11
    #define acc2 R12
    #define t0 R13
    #define t1 R14
    #define t2 R15
    #define t3 R8
    // Register and stack allocation for the SSE code
    #define rStore (0*16)(BP)
    #define sStore (1*16)(BP)
    #define state1Store (2*16)(BP)
    #define state2Store (3*16)(BP)
    #define tmpStore (4*16)(BP)
    #define ctr0Store (5*16)(BP)
    #define ctr1Store (6*16)(BP)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 29 21:28:33 UTC 2023
    - 105.6K bytes
    - Viewed (0)
Back to top