Versions in this module Expand all Collapse all v1 v1.0.0 Jun 7, 2019 Changes in this version + var ErrKeyExists = "key by that name already exists, refusing to overwrite" + var ErrKeyFmt = "key has invalid format" + var ErrNoSuchKey = "no key by the given name was found" + type Krab struct + func NewKrab(opts Opts) (*Krab, error) + func (km *Krab) Close() error + func (km *Krab) Delete(name string) error + func (km *Krab) Get(name string) (ci.PrivKey, error) + func (km *Krab) Has(name string) (bool, error) + func (km *Krab) List() ([]string, error) + func (km *Krab) Put(name string, privKey ci.PrivKey) error + type Opts struct + DSPath string + Passphrase string + ReadOnly bool Other modules containing this package github.com/RTradeLtd/krab/v4