Skip to content

Commit

Permalink
Revert "Minor tutorial related tweaks made after reviewing PR #775"
Browse files Browse the repository at this point in the history
  • Loading branch information
lukpueh authored Nov 29, 2019
1 parent 762b9c2 commit 99ac934
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 9 deletions.
16 changes: 8 additions & 8 deletions docs/TUTORIAL.md
Original file line number Diff line number Diff line change
Expand Up @@ -62,14 +62,14 @@ and verify metadata files.
To begin, cryptographic keys are generated with the repository tool. However,
before metadata files can be validated by clients and target files fetched in a
secure manner, public keys must be pinned to particular metadata roles and
metadata signed by the role's private keys. After covering keys, the four
required top-level metadata are created next. Examples are given demonstrating
the expected work flow, where the metadata roles are created in a specific
order, keys imported and loaded, and metadata signed and written to disk.
Lastly, target files are added to the repository, and a custom delegation
performed to extend the default roles of the repository. By the end, a fully
populated TUF repository is generated that can be used by clients to securely
download updates.
metadata signed by role's private keys. After covering keys, the four required
top-level metadata are created next. Examples are given demonstrating the
expected work flow, where the metadata roles are created in a specific order,
keys imported and loaded, and metadata signed and written to disk. Lastly,
target files are added to the repository, and a custom delegation performed to
extend the default roles of the repository. By the end, a fully populated TUF
repository is generated that can be used by clients to securely download
updates.

### Keys ###
The repository tool supports multiple public-key algorithms, such as
Expand Down
2 changes: 1 addition & 1 deletion tuf/repository_tool.py
Original file line number Diff line number Diff line change
Expand Up @@ -446,7 +446,7 @@ def dirty_roles(self):
None.
"""

logger.info('Dirty roles: ' + str(sorted(tuf.roledb.get_dirty_roles(self._repository_name))))
logger.info('Dirty roles: ' + str(tuf.roledb.get_dirty_roles(self._repository_name)))



Expand Down

0 comments on commit 99ac934

Please sign in to comment.