docs/tuf
Riyaz Faizullabhoy 06ba32ea47 Message canonical key ids on error
Signed-off-by: Riyaz Faizullabhoy <riyaz.faizullabhoy@docker.com>
2016-03-09 21:30:46 -08:00
..
client changing API for updating delegations 2016-02-23 11:57:08 -08:00
data Cleanup: remove the unused function 2016-02-25 21:48:32 +08:00
db adding gotuf to notary 2015-10-27 16:36:06 -07:00
encrypted fix current typos 2016-02-16 13:36:57 -08:00
signed Remove RoleWithKeys 2016-02-16 10:07:00 -08:00
store removing last vestiges of target download code 2016-02-02 11:39:17 -08:00
testutils Add test to check that if a key is rotated, but the requisite piece of 2016-03-03 09:22:26 -08:00
utils Kind of cleanup 2016-02-29 19:27:56 +08:00
validation fix up style according to comments 2016-01-04 16:20:19 -08: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 Message canonical key ids on error 2016-03-09 21:30:46 -08:00
tuf_test.go changing API for updating delegations 2016-02-23 11:57:08 -08: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.