mirror of
https://github.com/go-i2p/go-i2p.git
synced 2025-06-17 14:38:15 -04:00
keys
-- import "github.com/go-i2p/go-i2p/lib/keys"
Usage
type KeyStore
type KeyStore interface {
KeyID() string
// GetKeys returns the public and private keys
GetKeys() (publicKey types.PublicKey, privateKey types.PrivateKey, err error)
// StoreKeys stores the keys
StoreKeys() error
}
KeyStore is an interface for storing and retrieving keys
type KeyStoreImpl
type KeyStoreImpl struct {
}
func NewKeyStoreImpl
func NewKeyStoreImpl(dir, name string, privateKey types.PrivateKey) *KeyStoreImpl
func (*KeyStoreImpl) GetKeys
func (ks *KeyStoreImpl) GetKeys() (types.PublicKey, types.PrivateKey, error)
func (*KeyStoreImpl) KeyID
func (ks *KeyStoreImpl) KeyID() string
func (*KeyStoreImpl) StoreKeys
func (ks *KeyStoreImpl) StoreKeys() error
type RouterInfoKeystore
type RouterInfoKeystore struct {
*sntp.RouterTimestamper
}
RouterInfoKeystore is an implementation of KeyStore for storing and retrieving RouterInfo private keys and exporting RouterInfos
func NewRouterInfoKeystore
func NewRouterInfoKeystore(dir, name string) (*RouterInfoKeystore, error)
NewRouterInfoKeystore creates a new RouterInfoKeystore with fresh and new private keys it accepts a directory to store the keys in and a name for the keys then it generates new private keys for the routerInfo if none exist
func (*RouterInfoKeystore) ConstructRouterInfo
func (ks *RouterInfoKeystore) ConstructRouterInfo(addresses []*router_address.RouterAddress) (*router_info.RouterInfo, error)
func (*RouterInfoKeystore) GetKeys
func (ks *RouterInfoKeystore) GetKeys() (types.PublicKey, types.PrivateKey, error)
func (*RouterInfoKeystore) KeyID
func (ks *RouterInfoKeystore) KeyID() string
func (*RouterInfoKeystore) StoreKeys
func (ks *RouterInfoKeystore) StoreKeys() error
keys
github.com/go-i2p/go-i2p/lib/keys