@ -51,6 +51,32 @@ A Multisig HD Wallet Service, with minimun server trust.
```
```
# Local data
Copayers store its extended private key and their copayer's extended public key locally. We call this the ``Wallet Critical Data``. Extended private keys are never sent to the server.
# Password protection
Local data can be encrypted by the bit-wallet. Use the `-n` parameter to define the access level permited for no password operation. Available access levels are: `none` (password is required for everything, localfile is fully encrypted) `readonly`, `readwrite` and `full` (password is not ever required, local file is fully unencrypted) .
### encrypts everything by default
```
bit create myWallet 2-3 --nopasswd none
Password:
```
### allows readonly operations without password (encrypts xpriv, and leave readonlySigningKey unencrypted)
```
bit create myWallet 2-3 -p --nopasswd readonly
```
### allows readwrite operations without password (only encrypts xpriv)