Skip to content

RohitKochhar/vile

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

20 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

vile

Monolithic Key-Value Store (cloud-native distributed architecture in progress)

Distributed Architecture

The distributed version of vile is currently in progress. Documentation to come soon

Monolithic Architecture

Overview

monolithic-arch

When used with the secure vile-client, Vile is a highly secure and reliable remote key value store featuring end-to-end encryption.

Features

Client-side SHA256 Encryption

When used with vile-client, the vile key-value store provides end-to-end encryption.

Client-side encryption done using a secret password created by the user ensures that even if the server was comprimised, the data would be unreadable without the private key used to hash the value.

By ensuring that raw data is encrypted and decrypted on the client side ensures that as long as the user's password is protected, their data is protected.

For example:

Suppose I have the following ~/.vile.yaml configuration file:

host: localhost
port: 8080
secretKey: vilepassword

If I use the vile-client to write data to the remote store:

$ vile add album "watch my moves"
Using config file: /Users/rohitsingh/.vile.yaml
Successfully added album:"watch my moves" to remote vile store

Both the album and the key are encrypted using SHA256 encryption, meaning that even if any component remote server were to be exposed, the key would be obsfuscated as a hash (i.e. 0000000000000000000ER09N8PTPJM448NT0ATP199Q9IPKQU3EG====), and so would the value (i.e. 0000000000000000000D2FP5AHG7IV4GGTK96DFFIJ2VTVK1ASDG====).

Secure Access Via HTTPS/TLS

The vile server uses the TLS protocol to ensure that data communicated to the server is encrypted, on top of the client-side encryption. This provides an additional layer of security and prevents mitigates remote communication vulnerabilities.

About

Cloud Native Distributed Key-Value Store

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published