This is a simple password-wallet application based on Intel SGX for linux. Intel also provides a full tutorial and source code for Windows using Visual Studio.
Ensure to have the Intel SGX Linux drivers and SDK installed.
Install sgx-wallet as follows:
- Source the Intel SGX SDK as described here; if your SDK installation path is
/opt/intel/sgxsdk/
, run:
$ source /opt/intel/sgxsdk/environment
- Clone and build the source code:
$ git clone https://github.com/asonnino/sgx-wallet.git
$ cd sgx-wallet
$ make
sgx-wallet comes with a simple cli that can be run with the following options:
- Show help:
sgx-wallet -h
- Show version:
sgx-wallet -v
- Run tests:
sgx-wallet -t
- Create a new wallet with master-password
<master-passowrd>
:
sgx-wallet -n master-password
- Change current master-password to
<new-master-password>
:
sgx-wallet -p master-password -c new-master-password
- Add a new item to the wallet with title
<item_title>
, username<item_username>
, and password<item_password>
:
sgx-wallet -p master-password -a -x item_title -y item_username -z item_password
- Remove item at index
<item_index>
from the wallet:
sgx-wallet -p master-password -r item_index
The wallet data are saved in a file called wallet.seal
in the same directory as the main application. Note that you can have only one wallet.seal
file, and attempting to call twice sgx-wallet -n master-password
will result in an error.
Any help is welcome through PRs!