hfc.fabric_network.wallet¶
Module Contents¶
Classes¶
|
FileSystemWallet stores the identities of users and admins |
|
Class represents a tuple containing |
-
class
hfc.fabric_network.wallet.FileSystenWallet(path=os.getcwd() + '/tmp/hfc-kvs')¶ Bases:
objectFileSystemWallet stores the identities of users and admins ie. it contains the Private Key and Enrollment Certificate
-
exists(self, enrollment_id)¶ - Returns whether or not the credentials of a user with a given user_id
exists in the wallet
- Parameters
enrollment_id – enrollment id
- Returns
True or False
-
remove(self, enrollment_id)¶ Deletes identities of users with the given user_id
- Parameters
enrollment_id – enrollment id
- Returns
-
create_user(self, enrollment_id, org, msp_id, state_store=None)¶ - Returns an instance of a user whose identity
is stored in the FileSystemWallet
- Parameters
enrollment_id – enrollment id
org – organization
msp_id – MSP id
state_store – state store (Default value = None)
- Returns
a user instance
-