An open API service indexing awesome lists of open source software.

https://github.com/kuzzleio/kuzzle-vault

Securely share secrets for your application with JSON and cryptography
https://github.com/kuzzleio/kuzzle-vault

devops encryption key-management kuzzle

Last synced: 6 months ago
JSON representation

Securely share secrets for your application with JSON and cryptography

Awesome Lists containing this project

README

          









undefined

## About

Kuzzle Vault is a system to **securely share your API keys** and other secrets within your team.

Secrets are saved in **an encrypted JSON or YAML file** that you can version alongside your code.

You only need to **share one encryption key** with your team members.

Then you can load and decrypt the contents of the file into your **application memory** for secure usage.

See the related article on [Kuzzle Blog](https://blog.kuzzle.io/share-sensitive-data-with-git-and-cryptography)

Implementations are available for the following languages:
- [Node.js](https://github.com/kuzzleio/kuzzle-vault/)
- [PHP](https://github.com/kuzzleio/kuzzle-vault/tree/php)

___

## Usage

### Encrypt your secrets in a JSON file

#### With Kourou (NPM package)

First, you need to encrypt your secrets. The easiest way to do that is to use [Kourou, the Kuzzle CLI](https://github.com/kuzzleio/kourou/#kourou-vaultadd-secrets-file-key-value).

```bash
$ npm install -g kourou

$ kourou vault:encrypt config/prod/secrets.json --vault-key

🚀 Kourou - Encrypts an entire file.

[✔] Secrets were successfully encrypted into the file config/prod/secrets.enc.json
```

Then, you can securely store your secrets inside your repository and share them with you team.

#### With Bash

Alternatively, you can also use the [bash script provided](./bin/kuzzle-vault-encrypt-string) in this repository to encrypt a string in Kuzzle Vault format.

It will give you an encrypted string that you have to put in your JSON file containing encrypted secrets.

Example:
```bash
$ bash bin/kuzzle-vault-encrypt-string kuzzle-vault-encrypt-string something_secret vaultKey
cad308c9e857accc2d82dffb70e59dbe1460545372d6c0620dd46136ad16ae44.52a6a6e897696ec45f5715df12818939
```

Then put the encrypted string in a JSON file:
```json
{
"secret-key": "cad308c9e857accc2d82dffb70e59dbe1460545372d6c0620dd46136ad16ae44.52a6a6e897696ec45f5715df12818939"
}
```

The complete script documentation is available with `bash bin/kuzzle-vault-encrypt-string --help`.

### Use encrypted secrets within your application

To load the secrets inside an application, instantiate the Vault with the same password as for the encryption.

Then, use the decrypt method with the path of the encrypted secrets file to load the secrets into the memory.

```js
const vault = new Vault('password');
vault.decrypt('config/prod/secrets.enc.json');
// or
vault.decrypt('config/prod/secrets.enc.yaml');

// secrets are now available
vault.secrets
```

You can also provide the password with the environment variable `KUZZLE_VAULT_KEY`.

```js
// process.env.KUZZLE_VAULT_KEY === 'password'

const vault = new Vault();
vault.decrypt('config/prod/secrets.enc.json');

// secrets are now available
vault.secrets
```

### Data encryption

The cipher used is `aes-256-cbc` with a 16 bytes initialization vector.

The encryption key is hashed with SHA256 and then used with a random initialization vector to encrypt the data.

Encrypted values are represented under the following format `.`.

Both `` and `` are in hexadecimal.

### Secrets file format

The secrets file is in JSON or YAML format. String values are encrypted but the key names remain the same.

```json
/* secrets.json */
{
"aws": {
"secretKeyId": "lfiduras"
},
"cloudinaryKey": "ho-chi-minh"
}
```

```yaml
aws:
- secretKeyId: "lfiduras"
- groups:
primary
secondary
```

Once encrypted, the file looks like the following:

```json
/* secrets.enc.json */
{
"aws": {
"secretKeyId": "81f52891e336c76c82033c38f44d28.81f3214be3836bbb9fa165dfa691071a"
},
"cloudinaryKey": "f700cac98100f1266536553f3181ada6.65dfa691071a81f3214be3836bbb9fa1"
}
```

```yaml
aws:
- secretKeyId: "81f52891e336c76c82033c38f44d28.81f3214be3836bbb9fa165dfa691071a"
- groups:
"f700cac98100f1266536553f3181ada6.65dfa691071a81f3214be3836bbb9fa1"
"1266536553ff700cac98100f3181ada6.a81f3214be3865dfa69107136bbb9fa1"
```

## Vault class

[Vault.constructor](#constructor)
[Vault.decrypt](#decrypt)

___

### Vault.constructor

The constructor of the `Vault` class.

```js
Vault(vaultKey: string | undefined);
```

**Arguments**

| Name | Type | Description |
| -------- | ----------------- | ----------- |
| `vaultKey` |

String
| The key used to encrypt and decrypt secrets |

#### Usage

```js
const vault = new Vault('my vault key');
```

___

### Vault.decrypt

Decrypts the content of the file designated by `encryptedVaultPath` and store the decrypted content inside the property `secrets` of the `Vault` class.


```js
decrypt(encryptedVaultPath: string);
```

#### Usage

```js
const vault = new Vault('my vault key');
vault.decrypt('path/to/secrets.enc.json');

vault.secrets // Contains decrypted secrets
```

## [Cryptonomicon](./src/Cryptonomicon.ts) class

This class contains the cryptography primitives used to encrypt and decrypt the secrets.

There are 4 methods available:
- `decryptObject`
- `encryptObject`
- `encryptString`
- `decryptString`

You can use this class to build your own tools to decrypt or encrypt secrets inside your application.