Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add KMIP Wrapping #7

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,4 +1,8 @@
.vscode
.idea
.DS_Store
go.work
go.work.sum
*.crt
*.key
*.pem
1 change: 1 addition & 0 deletions const.go
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ const (
WrapperTypeGcpCkms WrapperType = "gcpckms"
WrapperTypeHsmAuto WrapperType = "hsm-auto"
WrapperTypeHuaweiCloudKms WrapperType = "huaweicloudkms"
WrapperTypeKmip WrapperType = "kmip"
WrapperTypeOciKms WrapperType = "ocikms"
WrapperTypePkcs11 WrapperType = "pkcs11"
WrapperTypePooled WrapperType = "pooled"
Expand Down
29 changes: 29 additions & 0 deletions wrappers/kmip/go.mod
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
module github.com/openbao/go-kms-wrapping/wrappers/kmip/v2

go 1.22.1

replace github.com/openbao/go-kms-wrapping/v2 => ../../

require (
github.com/gemalto/kmip-go v0.0.10
github.com/google/uuid v1.3.0
github.com/openbao/go-kms-wrapping/v2 v2.0.0-00010101000000-000000000000
)

require (
github.com/ansel1/merry v1.6.2 // indirect
github.com/ansel1/merry/v2 v2.0.1 // indirect
github.com/gemalto/flume v0.13.0 // indirect
github.com/hashicorp/go-uuid v1.0.3 // indirect
github.com/mattn/go-colorable v0.1.12 // indirect
github.com/mattn/go-isatty v0.0.14 // indirect
github.com/mgutz/ansi v0.0.0-20200706080929-d51e80ef957d // indirect
go.uber.org/atomic v1.9.0 // indirect
go.uber.org/multierr v1.8.0 // indirect
go.uber.org/zap v1.21.0 // indirect
golang.org/x/sys v0.15.0 // indirect
golang.org/x/text v0.3.8 // indirect
google.golang.org/protobuf v1.31.0 // indirect
)

retract [v2.0.0, v2.0.2]
215 changes: 215 additions & 0 deletions wrappers/kmip/go.sum

Large diffs are not rendered by default.

Loading