Skip to content

Commit

Permalink
Merge pull request #56 from shibumi/shibumi/54-intoto-capturing-imple…
Browse files Browse the repository at this point in the history
…mentation

in-toto-run implementation
  • Loading branch information
lukpueh authored Aug 20, 2020
2 parents d11e317 + 70fdec2 commit 4aecd39
Show file tree
Hide file tree
Showing 21 changed files with 1,766 additions and 582 deletions.
6 changes: 0 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,13 +27,7 @@ production use.
If any of these features are necessary for your use case please let us know and
we will try to provide them as soon as possible!

* [Signature schemes, other than `rsassa-pss-sha256` and `ed25519`](https://github.com/in-toto/in-toto-golang/issues/27)
* [GPG keys](https://github.com/in-toto/in-toto-golang/issues/26)
* [Layout parameter substitution](https://github.com/in-toto/in-toto-golang/issues/29)
* [in-toto-run functionality](https://github.com/in-toto/in-toto-golang/issues/30)
*Note: A basic `runlib` does exist, however it is only used to execute the
inspection commands in a layout and create the corresponding metadata. It
cannot be used to create signed evidence (link metadata) for steps in a
layout.*
* [Hashing algorithms, other than `sha256` (in artifact recording)](https://github.com/in-toto/in-toto-golang/issues/31)
* [Exclude patterns (in artifact recording)](https://github.com/in-toto/in-toto-golang/issues/33)
2 changes: 1 addition & 1 deletion in_toto/examples_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ func ExampleInTotoVerify() {
// InTotoVerify. The layout represents the root of trust so it is a good
// idea to sign it using multiple keys.
var pubKey Key
err := pubKey.LoadPublicKey(LayoutKeyPath)
err := pubKey.LoadKey(LayoutKeyPath, "rsassa-pss-sha256", []string{"sha256", "sha512"})
if err != nil {
fmt.Printf("Unable to load public key: %s", err)
}
Expand Down
Loading

0 comments on commit 4aecd39

Please sign in to comment.