key.go 1.18 KB
Newer Older
1 2 3 4 5 6
package iface

import (
	"context"

	options "github.com/ipfs/go-ipfs/core/coreapi/interface/options"
7

Steven Allen's avatar
Steven Allen committed
8
	"gx/ipfs/QmPJxxDsX2UbchSHobbYuvz7qnyJTFKvaKMzE2rZWJ4x5B/go-libp2p-peer"
9 10 11 12 13 14
)

// Key specifies the interface to Keys in KeyAPI Keystore
type Key interface {
	// Key returns key name
	Name() string
15

16 17
	// Path returns key path
	Path() Path
18

19 20
	// ID returns key PeerID
	ID() peer.ID
21 22 23 24 25 26 27 28 29 30 31 32 33 34 35
}

// KeyAPI specifies the interface to Keystore
type KeyAPI interface {
	// Generate generates new key, stores it in the keystore under the specified
	// name and returns a base58 encoded multihash of it's public key
	Generate(ctx context.Context, name string, opts ...options.KeyGenerateOption) (Key, error)

	// Rename renames oldName key to newName. Returns the key and whether another
	// key was overwritten, or an error
	Rename(ctx context.Context, oldName string, newName string, opts ...options.KeyRenameOption) (Key, bool, error)

	// List lists keys stored in keystore
	List(ctx context.Context) ([]Key, error)

36 37 38
	// Self returns the 'main' node key
	Self(ctx context.Context) (Key, error)

39
	// Remove removes keys from keystore. Returns ipns path of the removed key
40
	Remove(ctx context.Context, name string) (Key, error)
41
}