Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for ENCRYPTION (0.27 sec)

  1. cmd/object-handlers.go

    // while reading the object from another source.
    // Notice: The S3 client can send secret keys in headers for encryption related jobs,
    // the handler should ensure to remove these keys before sending them to the object layer.
    // Currently these keys are:
    //   - X-Amz-Server-Side-Encryption-Customer-Key
    //   - X-Amz-Copy-Source-Server-Side-Encryption-Customer-Key
    func (api objectAPIHandlers) CopyObjectHandler(w http.ResponseWriter, r *http.Request) {
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Thu May 02 20:15:54 GMT 2024
    - 125.2K bytes
    - Viewed (0)
  2. cmd/site-replication.go

    				Bucket:    bucket,
    				Tags:      &objLockStr,
    				UpdatedAt: tm,
    			})
    			if err != nil {
    				return errSRBucketMetaError(err)
    			}
    		}
    
    		// Replicate existing bucket bucket encryption settings
    		sseConfigData, tm := meta.EncryptionConfigXML, meta.EncryptionConfigUpdatedAt
    		if len(sseConfigData) > 0 {
    			sseConfigStr := base64.StdEncoding.EncodeToString(sseConfigData)
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Wed May 01 01:09:56 GMT 2024
    - 184.2K bytes
    - Viewed (1)
  3. cmd/object-handlers_test.go

    		// cases 8-11: small single part objects with encryption
    		{"enc-nothing", []int64{0}, mapCopy(metaWithSSEC)},
    		{"enc-small-0", []int64{11}, mapCopy(metaWithSSEC)},
    		{"enc-small-1", []int64{509}, mapCopy(metaWithSSEC)},
    		{"enc-small-2", []int64{5 * oneMiB}, mapCopy(metaWithSSEC)},
    		// cases 12-15: multipart part objects with encryption
    		{"enc-mp-0", []int64{5 * oneMiB, 1}, mapCopy(metaWithSSEC)},
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Sun Apr 28 17:53:50 GMT 2024
    - 160K bytes
    - Viewed (0)
  4. cmd/admin-handlers.go

    	// 1. Generate a new key using the KMS.
    	key, err := GlobalKMS.GenerateKey(context.Background(), "", kmsContext)
    	if err != nil {
    		kmsStat.Encrypt = fmt.Sprintf("Encryption failed: %v", err)
    	} else {
    		kmsStat.Encrypt = "success"
    	}
    
    	// 2. Verify that we can indeed decrypt the (encrypted) key
    	decryptedKey, err := GlobalKMS.DecryptKey(key.KeyID, key.Ciphertext, kmsContext)
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Mon Apr 29 17:39:04 GMT 2024
    - 97.8K bytes
    - Viewed (2)
Back to top