Client side encryption support for remote storage (#468)

This commit is contained in:
Toni Spets
2023-05-01 19:06:01 +03:00
committed by GitHub
parent 68e60cbfdf
commit a34a92c0b9
4 changed files with 118 additions and 14 deletions

5
go.mod
View File

@@ -4,6 +4,7 @@ go 1.16
require (
cloud.google.com/go/storage v1.15.0
filippo.io/age v1.1.1
github.com/Azure/azure-storage-blob-go v0.13.0
github.com/aws/aws-sdk-go v1.27.0
github.com/mattn/go-shellwords v1.0.11
@@ -11,9 +12,9 @@ require (
github.com/pierrec/lz4/v4 v4.1.15
github.com/pkg/sftp v1.13.0
github.com/prometheus/client_golang v1.12.2
golang.org/x/crypto v0.0.0-20210513164829-c07d793c2f9a
golang.org/x/crypto v0.4.0
golang.org/x/sync v0.0.0-20220722155255-886fb9371eb4
golang.org/x/sys v0.0.0-20220114195835-da31bd327af9
golang.org/x/sys v0.3.0
google.golang.org/api v0.45.0
gopkg.in/yaml.v2 v2.4.0
)