mirror of
https://github.com/linuxkit/linuxkit.git
synced 2026-04-04 21:51:46 +00:00
That entailed a few other fixes, eg small Notary API changes. Signed-off-by: Justin Cormack <justin.cormack@docker.com>
19 lines
482 B
Go
19 lines
482 B
Go
// +build !pkcs11
|
|
|
|
package client
|
|
|
|
import (
|
|
"fmt"
|
|
|
|
"github.com/theupdateframework/notary"
|
|
"github.com/theupdateframework/notary/trustmanager"
|
|
)
|
|
|
|
func getKeyStores(baseDir string, retriever notary.PassRetriever) ([]trustmanager.KeyStore, error) {
|
|
fileKeyStore, err := trustmanager.NewKeyFileStore(baseDir, retriever)
|
|
if err != nil {
|
|
return nil, fmt.Errorf("failed to create private key store in directory: %s", baseDir)
|
|
}
|
|
return []trustmanager.KeyStore{fileKeyStore}, nil
|
|
}
|