Documentation ¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type FileUserCertStore ¶ added in v1.2.0
type FileUserCertStore struct {
FilePath string
}
func (*FileUserCertStore) Load ¶ added in v1.2.0
func (f *FileUserCertStore) Load(user *msp.UserData) error
type KeyStore ¶ added in v1.2.0
type KeyStore interface { StoreKey(rawPem []byte, alias string) error LoadKey(alias string) ([]byte, error) }
func NewFileKeyStore ¶ added in v1.2.0
type UserCertStore ¶ added in v1.2.0
type UserCertStore interface { Load(user *msp.UserData) error LoadAll(appCode string) []*msp.UserData Store(user *msp.UserData) error }
func NewUserCertStore ¶ added in v1.2.0
func NewUserCertStore(path string) UserCertStore
Click to show internal directories.
Click to hide internal directories.