docs/tuf
Ying Li f8cd53cf2f When signing the root, modify and sign a temporary root that gets assigned back into
the repo if signing was successful.  This way, we don't mutate the existing root
in a failed attempt to sign it.

Signed-off-by: Ying Li <ying.li@docker.com>
2016-04-13 22:25:43 -07:00
..
client Add an optionalKeys parameter to signed.Sign 2016-04-13 11:48:36 -07:00
data Require signing with all previous roles, instead of just the immediately previous role 2016-04-13 22:10:58 -07:00
encrypted Change assert to require in tuf/* packages 2016-04-05 11:21:14 -07:00
signed Address review comments and improve docstrings 2016-04-13 11:48:36 -07:00
store Update some comments 2016-04-13 21:23:51 +08:00
testutils Change root cert rotation to be root key rotation instead 2016-04-13 22:12:53 -07:00
utils Change assert to require in tuf/* packages 2016-04-05 11:21:14 -07:00
validation Use 'require' instead of 'assert' in client and TUF client tests 2016-03-15 13:52:48 -07:00
LICENSE adding gotuf to notary 2015-10-27 16:36:06 -07:00
README.md fix current typos 2016-02-16 13:36:57 -08:00
tuf.go When signing the root, modify and sign a temporary root that gets assigned back into 2016-04-13 22:25:43 -07:00
tuf_test.go Change root cert rotation to be root key rotation instead 2016-04-13 22:12:53 -07:00

README.md

GOTUF

This is still a work in progress but will shortly be a fully compliant Go implementation of The Update Framework (TUF).

Where's the CLI

This repository provides a library only. The Notary project from Docker should be considered the official CLI to be used with this implementation of TUF.

TODOs:

  • Add Targets to existing repo
  • Sign metadata files
  • Refactor TufRepo to take care of signing and verification
  • Ensure consistent capitalization in naming (TUF___ vs Tuf___)
  • Make caching of metadata files smarter - PR #5
  • Add configuration for CLI commands. Order of configuration priority from most to least: flags, config file, defaults Notary should be the official CLI
  • Reasses organization of data types. Possibly consolidate a few things into the data package but break up package into a few more distinct files
  • Comprehensive test cases
  • Delete files no longer in use
  • Fix up errors. Some have to be instantiated, others don't, the inconsistency is annoying.
  • Bump version numbers in meta files (could probably be done better)

Credits

This implementation was originally forked from flynn/go-tuf, however in attempting to add delegations I found I was making such significant changes that I could not maintain backwards compatibility without the code becoming overly convoluted.

Some features such as pluggable verifiers have already been merged upstream to flynn/go-tuf and we are in discussion with titanous about working to merge the 2 implementations.

This implementation retains the same 3 Clause BSD license present on the original flynn implementation.