Skip to content

mollaali98/PasswordWallet

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

10 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

sgx-wallet

This is a simple password-wallet application based on Intel SGX for linux. Intel also provides a full tutorial

Pre-requisites

Ensure to have the Intel SGX Linux drivers and SDK installed. There is a video how to install here

Install

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

Usage

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.

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published