Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 1 of 1 for unsealObjectKey (0.12 seconds)

  1. cmd/encryption-v1.go

    			return nil, errKMSNotConfigured
    		}
    		objectKey, err := crypto.S3.UnsealObjectKey(GlobalKMS, metadata, bucket, object)
    		if err != nil {
    			return nil, err
    		}
    		return objectKey[:], nil
    	case crypto.S3KMS:
    		if GlobalKMS == nil {
    			return nil, errKMSNotConfigured
    		}
    		objectKey, err := crypto.S3KMS.UnsealObjectKey(GlobalKMS, metadata, bucket, object)
    		if err != nil {
    			return nil, err
    		}
    Created: Sun Dec 28 19:28:13 GMT 2025
    - Last Modified: Sun Sep 28 20:59:21 GMT 2025
    - 38K bytes
    - Click Count (0)
Back to Top