Skip to content
Snippets Groups Projects
Unverified Commit 5a64b327 authored by Luke Hinds's avatar Luke Hinds Committed by GitHub
Browse files

Add new commands and rename binary reference (#24)

parent 64b7838c
No related branches found
No related tags found
No related merge requests found
.idea/*
.vscode/*
logid
rekor-cli
......@@ -4,7 +4,7 @@ Early Development / Experimental use only.
Rekór - Greek for “Record”
Rekor's goals are to provide an immutable tamper resistant ledger of metadata generated within a software projects supply chain. Rekor will enable software maintainers and build systems to record signed metadata to an immutable record. Other parties can then query said metadata to enable them to make informed decisions on trust and nonrepudiation of an object's lifecycle, based on signed metadata stored within a tamper proof binary (merkle) tree.
Rekor's goals are to provide an immutable tamper resistant ledger of metadata generated within a software projects supply chain. Rekor will enable software maintainers and build systems to record signed metadata to an immutable record. Other parties can then query said metadata to enable them to make informed decisions on trust and non-repudiation of an object's life-cycle, based on signed metadata stored within a tamper proof binary (merkle) tree.
The Rekor CLI requires a running instance of the [rekor-server](https://github.com/projectrekor/rekor-server).
......@@ -12,18 +12,34 @@ The CLI will default to using a rekor server connection of `localhost:3000`, sho
## Add an entry
The `add` command sends a file to the transparency log, who then adds the file to the transparency log as a merkle leaf.
The `add` command sends a file to the transparency log, who then adds the file
to the transparency log as a merkle leaf.
`rekor add --linkfile <your/linkfile.link>`
`rekor-cli add --linkfile <your/yourfile>`
## Get Proof of Entry
`rekor get --linkfile <your/linkfile.link>`
`rekor-cli get --linkfile <your/yourfile>`
The `get` command performs an inclusion proof request to the transparency log. Atttributes such as the files merkle hash, signed tree root hash are used
to cryptographically verify proof of entry.
The `get` command performs an inclusion proof request to the transparency log.
Attributes such as the files merkle hash, signed tree root hash are used to
cryptographically verify proof of entry.
## Contributions and Issues
## Performs a consistency proof against the tree between the last seen time and now
This command can be used to monitor the tree for updates, it creates a track
file in `$HOME/.rekor/rekor.json`
`rekor-cli update`
## get leaf
Contributions are welcome, please fork and make a pull request. Likewise if you find an issue, please do raise it.
Pass an index and the file is retrieved using a filename according to the merkle
hash.
`rekor-cli getleaf --index 1`
## Contributions and Issues
Contributions are welcome, please fork and make a pull request. Likewise if you
find an issue, please do raise it.
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment