summaryrefslogtreecommitdiff
path: root/examples/s3/composeobject.go
diff options
context:
space:
mode:
Diffstat (limited to 'examples/s3/composeobject.go')
-rw-r--r--examples/s3/composeobject.go19
1 files changed, 10 insertions, 9 deletions
diff --git a/examples/s3/composeobject.go b/examples/s3/composeobject.go
index 2f76ff0..78bfe95 100644
--- a/examples/s3/composeobject.go
+++ b/examples/s3/composeobject.go
@@ -1,8 +1,8 @@
// +build ignore
/*
- * Minio Go Library for Amazon S3 Compatible Cloud Storage
- * Copyright 2015-2017 Minio, Inc.
+ * MinIO Go Library for Amazon S3 Compatible Cloud Storage
+ * Copyright 2015-2017 MinIO, Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -22,7 +22,8 @@ package main
import (
"log"
- minio "github.com/minio/minio-go"
+ minio "github.com/minio/minio-go/v6"
+ "github.com/minio/minio-go/v6/pkg/encrypt"
)
func main() {
@@ -44,27 +45,27 @@ func main() {
// Prepare source decryption key (here we assume same key to
// decrypt all source objects.)
- decKey := minio.NewSSEInfo([]byte{1, 2, 3}, "")
+ decKey, _ := encrypt.NewSSEC([]byte{1, 2, 3})
// Source objects to concatenate. We also specify decryption
// key for each
- src1 := minio.NewSourceInfo("bucket1", "object1", &decKey)
+ src1 := minio.NewSourceInfo("bucket1", "object1", decKey)
src1.SetMatchETagCond("31624deb84149d2f8ef9c385918b653a")
- src2 := minio.NewSourceInfo("bucket2", "object2", &decKey)
+ src2 := minio.NewSourceInfo("bucket2", "object2", decKey)
src2.SetMatchETagCond("f8ef9c385918b653a31624deb84149d2")
- src3 := minio.NewSourceInfo("bucket3", "object3", &decKey)
+ src3 := minio.NewSourceInfo("bucket3", "object3", decKey)
src3.SetMatchETagCond("5918b653a31624deb84149d2f8ef9c38")
// Create slice of sources.
srcs := []minio.SourceInfo{src1, src2, src3}
// Prepare destination encryption key
- encKey := minio.NewSSEInfo([]byte{8, 9, 0}, "")
+ encKey, _ := encrypt.NewSSEC([]byte{8, 9, 0})
// Create destination info
- dst, err := minio.NewDestinationInfo("bucket", "object", &encKey, nil)
+ dst, err := minio.NewDestinationInfo("bucket", "object", encKey, nil)
if err != nil {
log.Fatalln(err)
}