Quickstart
Securely store your sensitive information with our end to end encryption
Overview
1. Install SDK
2. Create a Client
import e3db
token = 'YOUR_REGISTRATION_TOKEN_HERE'
client_name = 'example name'
public_key, private_key = e3db.Client.generate_keypair()
# Register your client
client_info = e3db.Client.register(token, client_name, public_key)
config = e3db.Config(
client_info.client_id,
client_info.api_key_id,
client_info.api_secret,
public_key,
private_key
)
# To save this Configuration to disk, do the following:
config.write()
# Instantiate your client to communicate with TozStore
client = e3db.Client(config())3. Encrypt Your Data
Last updated