Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for Rashed (0.15 sec)

  1. cmd/encryption-v1.go

    )
    
    // metadataEncrypter returns a function that will read data from input,
    // encrypt it using the provided key and return the result.
    // 0 sized inputs are passed through.
    func metadataEncrypter(key crypto.ObjectKey) objectMetaEncryptFn {
    	return func(baseKey string, data []byte) []byte {
    		if len(data) == 0 {
    			return data
    		}
    		var buffer bytes.Buffer
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Thu Apr 04 12:04:40 GMT 2024
    - 36.5K bytes
    - Viewed (0)
Back to top