Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for KMSKeyID (0.05 sec)

  1. cmd/object-handlers.go

    		w.Header().Set(xhttp.AmzServerSideEncryption, xhttp.AmzEncryptionAES)
    	case crypto.S3KMS:
    		w.Header().Set(xhttp.AmzServerSideEncryption, xhttp.AmzEncryptionKMS)
    		w.Header().Set(xhttp.AmzServerSideEncryptionKmsID, objInfo.KMSKeyID())
    		if kmsCtx, ok := objInfo.UserDefined[crypto.MetaContext]; ok {
    			w.Header().Set(xhttp.AmzServerSideEncryptionKmsContext, kmsCtx)
    		}
    	case crypto.SSEC:
    		// Validate the SSE-C Key set in the header.
    Registered: Sun Sep 07 19:28:11 UTC 2025
    - Last Modified: Sun Sep 07 16:13:09 UTC 2025
    - 120.6K bytes
    - Viewed (0)
  2. cmd/bucket-replication.go

    		// specified, MinIO is supposed to use whatever default
    		// config applies on the site or bucket.
    		var keyID string
    		if kms.ReplicateKeyID() {
    			keyID = objInfo.KMSKeyID()
    		}
    
    		sseEnc, err := encrypt.NewSSEKMS(keyID, nil)
    		if err != nil {
    			return putOpts, false, err
    		}
    		putOpts.ServerSideEncryption = sseEnc
    	}
    	return
    }
    
    Registered: Sun Sep 07 19:28:11 UTC 2025
    - Last Modified: Fri Aug 29 02:39:48 UTC 2025
    - 118K bytes
    - Viewed (0)
Back to top