Obsideo Cloud - encrypted storage we can't read. Save, browse, and sync whatever you want, from your terminal.
Project description
obsideo-cli
Encrypted storage we can't read. Save, browse, and sync whatever you want from your terminal. Files are encrypted on your machine before they leave, so Obsideo's gateway, coordinator, and storage providers only ever see ciphertext. Your data lands on three independent providers (RF=3).
pip install obsideo-cli
obsideo login # email -> 3 GB free
obsideo # open the shell
Get started
$ obsideo login
Enter your email: you@example.com
Check your email for a verification code.
Enter verification code: 482913
You're all set. 3 GB free.
Login is handled by Obsideo's signup service at signup.obsideo.io: it emails
you a one-time code and provisions your free tier. There's no password - just your
email and a local key (see How it works).
Then either drop into the shell or run one-shot commands:
$ obsideo
obsideo:/ put ~/notes.txt
obsideo:/ ls
[file] notes.txt 1.2 KB
obsideo:/ put ~/photos # a whole folder, uploaded recursively
obsideo:/ put "C:\My Files\tax return.pdf" # paths with spaces: just quote them
obsideo:/ mkdir trip
obsideo:/ cd trip
obsideo:/trip/ put ~/cat.jpg
obsideo:/trip/ get cat.jpg ./downloaded.jpg
Commands
| Command | Description |
|---|---|
obsideo login |
Sign up / log in with your email (3 GB free) |
ls [path] |
List files and folders |
cd <path> / pwd |
Move around / show location |
put <local> [name] |
Encrypt + upload a file, or a whole folder (recursive). --no-encrypt to store as-is |
get <remote> [local] |
Download + decrypt a file |
rm <remote> |
Delete a file |
mkdir <name> |
Create a folder |
info <remote> |
Show object metadata |
account |
Show storage used vs. your free quota |
sync push|pull|status |
Sync your local folder with Obsideo |
config [set k v] |
Show or change settings |
How it works
obsideo is a thin front-end over the shared obsideo_core layer (storage
seam, signing identity, account crypto, email-OTP login). The mlvault ML
extension builds on the same core - build the core once, two front-ends.
- Encryption: AES-256-GCM with one account data key held locally at
~/.obsideo/data.key. Copy that key to another machine and everything is readable there; lose it and the data is unrecoverable by design. Back it up. - Signing identity: an Ed25519 key (
~/.obsideo/signing.key) authorizes deletes (Principle 2 - the network can't delete your data without your signature). Generated locally; only the public half is ever sent. - Filename encryption: on by default (
encrypt_names). Each path component (folder names + filename) is encrypted on your machine with AES-SIV - deterministic, sols/cdstill list under the encrypted prefix and the client decrypts the returned tokens back to real names. Turn it off withconfig set encrypt_names false(interop/debug; existing objects aren't migrated). - What Obsideo sees: ciphertext only - never a filename or a byte of content. Residual leaks (by design at this level): directory structure (depth, fan-out), object sizes (ciphertext ≈ plaintext), and object counts. Identical names encrypt to identical tokens, so Obsideo can tell two objects share a name - never what it is.
License
MIT
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file obsideo_cli-0.2.5.tar.gz.
File metadata
- Download URL: obsideo_cli-0.2.5.tar.gz
- Upload date:
- Size: 25.3 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.12.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
87ec86446de00ccfbd439c0c5aaaf2e22a996292ffe7ff1be36a41ab560b06f2
|
|
| MD5 |
d1af36d72265fad3b25a060d5c8b8b3b
|
|
| BLAKE2b-256 |
2f1491723b2b133b87f3fdd88179947b913f27d561dab65a3d6086106c93127a
|
File details
Details for the file obsideo_cli-0.2.5-py3-none-any.whl.
File metadata
- Download URL: obsideo_cli-0.2.5-py3-none-any.whl
- Upload date:
- Size: 23.9 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.12.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
4d04843244ed5c7fe9147ab86ca958912e749fa450ef9ff07e51cdfef17ac1bf
|
|
| MD5 |
f25cb197677d00939e48ea5a3a32c854
|
|
| BLAKE2b-256 |
9a584ec555e283cfec04b4364ae5341a58e5edcbd49ebf868afc5dd9c36cc5d0
|