summaryrefslogtreecommitdiffstats
path: root/vendor/github.com/minio/minio-go/examples/s3/get-encrypted-object.go
diff options
context:
space:
mode:
Diffstat (limited to 'vendor/github.com/minio/minio-go/examples/s3/get-encrypted-object.go')
-rw-r--r--vendor/github.com/minio/minio-go/examples/s3/get-encrypted-object.go6
1 files changed, 4 insertions, 2 deletions
diff --git a/vendor/github.com/minio/minio-go/examples/s3/get-encrypted-object.go b/vendor/github.com/minio/minio-go/examples/s3/get-encrypted-object.go
index e997140be..8f51f26ae 100644
--- a/vendor/github.com/minio/minio-go/examples/s3/get-encrypted-object.go
+++ b/vendor/github.com/minio/minio-go/examples/s3/get-encrypted-object.go
@@ -24,6 +24,7 @@ import (
"os"
"github.com/minio/minio-go"
+ "github.com/minio/minio-go/pkg/encrypt"
)
func main() {
@@ -59,10 +60,10 @@ func main() {
////
// Build a symmetric key
- symmetricKey := minio.NewSymmetricKey([]byte("my-secret-key-00"))
+ symmetricKey := encrypt.NewSymmetricKey([]byte("my-secret-key-00"))
// Build encryption materials which will encrypt uploaded data
- cbcMaterials, err := minio.NewCBCSecureMaterials(symmetricKey)
+ cbcMaterials, err := encrypt.NewCBCSecureMaterials(symmetricKey)
if err != nil {
log.Fatalln(err)
}
@@ -72,6 +73,7 @@ func main() {
if err != nil {
log.Fatalln(err)
}
+ defer reader.Close()
// Local file which holds plain data
localFile, err := os.Create("my-testfile")