Skip to content

Seagate/kmip-go

This branch is 107 commits ahead of, 4 commits behind ThalesGroup/kmip-go:master.

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
Mar 28, 2022
Oct 15, 2024
Mar 28, 2022
Sep 7, 2022
Dec 18, 2024
Oct 15, 2024
Jul 26, 2021
Dec 18, 2024
Oct 15, 2024
Jul 28, 2020
Oct 15, 2024
Aug 22, 2022
Jul 28, 2020
Nov 19, 2018
Oct 15, 2024
Sep 7, 2022
Sep 7, 2022
Sep 7, 2022
Sep 7, 2022
Apr 9, 2021
Aug 7, 2020
Sep 7, 2022
Sep 7, 2022
Oct 15, 2024
Oct 15, 2024
Sep 7, 2022
Sep 7, 2022
Jan 26, 2023
Apr 21, 2021
Dec 5, 2022
Mar 28, 2022
Dec 8, 2022
Sep 30, 2022
Dec 5, 2022
Jan 26, 2023
Sep 7, 2022
Jan 26, 2023
Dec 5, 2022
Sep 7, 2022
Oct 31, 2018
Sep 7, 2022

Repository files navigation

kmip-go GoDoc Go Report Card Build

kmip-go is a go implemenation of KMIP protocol primitives. It supports marshaling data in TTLV, XML, or JSON encodings to and from go values and structs. It can be used to implement KMIP clients or servers.

Installation

go get github.com/Seagate/kmip-go

Or, to just install the ppkmip pretty printing tool:

go install github.com/Seagate/kmip-go/cmd/ppkmip

Packages

The ttlv package implements the core encoder and decoder logic.

The kmip14 package contains constants for all the tags, types, enumerations and bitmasks defined in the KMIP 1.4 specification. It also contains mappings from these values to the normalized names used in the JSON and XML encodings, and the canonical names used in Attribute structures.
The kmip14 definitions are all automatically registered with ttlv.DefaultRegistry.

The kmip20 package adds additional enumeration values from the 2.0 specification. It is meant to be registered on top of the 1.4 definitions.

The root package defines golang structures for some of the significant Structure definitions in the 1.4 specification, like Attributes, Request, Response, etc. It is incomplete, but can be used as an example for defining other structures. It also contains an example of a client and server.

cmd/kmipgen is a code generation tool which generates the tag and enum constants from a JSON specification input. It can also be used independently in your own code to generate additional tags and constants. make install to build and install the tool. See kmip14/kmip_1_4.go for an example of using the tool.

cmd/kmipgen is a tool for pretty printing kmip values. It can accept KMIP input from stdin or files, encoded in TTLV, XML, or JSON, and output in a variety of formats. make install to intall the tool, and ppkmip --help to see usage.

Contributing

To build, be sure to have a recent go SDK, and make. Run make tools to install other dependencies.

There is also a dockerized build, which only requires make and docker-compose: make docker. You can also do make fish or make bash to shell into the docker build container.

Merge requests are welcome! Before submitting, please run make and make sure all tests pass and there are no linter findings.

About

KMIP client library in Go

Resources

License

Code of conduct

Security policy

Stars

Watchers

Forks

Packages

No packages published

Languages

  • Go 99.0%
  • Other 1.0%