[][src]Crate cocoon

Cocoon

Cocoon format

MiniCocoon and Cocoon are protected containers to wrap sensitive data with strong encryption and format validation. A format of MiniCocoon and Cocoon is developed for the following practical cases:

  1. As an encrypted file format to organize simple secure storage:
    1. Key store.
    2. Password store.
    3. Sensitive data store.
  2. For encrypted data transfer:
    • As a secure in-memory container.

Cocoon is developed with security in mind. It aims to do the only one thing and do it flawlessly. It has a minimal set of dependencies and a minimalist design to simplify control over security aspects. It's a pure Rust implementation, and all dependencies are pure Rust packages with disabled default features.

Problem

Whenever you need to transmit and store data securely you reinvent the wheel: you have to take care of how to encrypt data properly, how to handle randomly generated buffers, then how to get data back, parse, and decrypt. Instead, you can use MiniCocoon and Cocoon.

Basic Usage

Wrap/Unwrap

📌 wrap/unwrap

One party wraps private data into a container using MiniCocoon::wrap. Another party (or the same one, or whoever knows the key) unwraps data out of the container using MiniCocoon::unwrap.

MiniCocoon is preferred against Cocoon in a case of simple data encryption because it generates a container with a smaller header without version control, and also it allows to wrap data sequentially (wrap, wrap, wrap!) without performance drop because of KDF calculation.

let cocoon = MiniCocoon::from_key(b"0123456789abcdef0123456789abcdef", &[0; 32]);

let wrapped = cocoon.wrap(b"my secret data")?;
assert_ne!(&wrapped, b"my secret data");

let unwrapped = cocoon.unwrap(&wrapped)?;
assert_eq!(unwrapped, b"my secret data");

Dump/Parse

📌 dump/parse

You can store data to file. Put data into Vec container, the data is going to be encrypted in place and stored in a file using the "cocoon" format.

Cocoon is preferred as a long-time data storage, it has an extended header with a magic number, options, and version control.

let mut data = b"my secret data".to_vec();
let cocoon = Cocoon::new(b"password");

cocoon.dump(data, &mut file)?;

let data = cocoon.parse(&mut file)?;
assert_eq!(&data, b"my secret data");

Encrypt/Decrypt

📌 encrypt/decrypt

You can encrypt data in place and avoid re-allocations. The method operates with a detached meta-data (a container format prefix) in the array on the stack. It is suitable for "no_std" build and whenever you want to evade re-allocations of a huge amount of data. You have to care about how to store and transfer a data length and a container prefix though.

Both MiniCocoon and Cocoon have the same API, but prefixes are of different sizes. MiniCocoon doesn't have the overhead of generating KDF on each encryption call, therefore it's recommended for simple sequential encryption/decryption operations.

let mut data = "my secret data".to_owned().into_bytes();
let cocoon = MiniCocoon::from_key(b"0123456789abcdef0123456789abcdef", &[0; 32]);

let detached_prefix = cocoon.encrypt(&mut data)?;
assert_ne!(data, b"my secret data");

cocoon.decrypt(&mut data, &detached_prefix)?;
assert_eq!(data, b"my secret data");

Study Case

You implement a database of secrets that must be stored in an encrypted file using a user password. There are a lot of ways how your database can be represented in memory and how it could be serialized. You handle these aspects on your own, e.g. you can use HashMap to manage data and use borsh, or bincode, to serialize the data. You can even compress a serialized buffer before encryption.

In the end, you use Cocoon to put the final image into an encrypted container.

use borsh::BorshSerialize;
use cocoon::{Cocoon, Error};

use std::collections::HashMap;
use std::fs::File;

// Your data can be represented in any way.
#[derive(BorshSerialize)]
struct Database {
    inner: HashMap<String, String>,
}

fn main() -> Result<(), Error> {
    let mut file = File::create("target/test.db")?;
    let mut db = Database { inner: HashMap::new() };

    // Over time you collect some kind of data.
    db.inner.insert("my.email@example.com".to_string(), "eKPV$PM8TV5A2".to_string());

    // You can choose how to serialize data. Also, you can compress it.
    let encoded = db.try_to_vec().unwrap();

    // Finally, you want to store your data secretly.
    // Supply some password to Cocoon: it can be any byte array, basically.
    // Don't use a hard-coded password in real life!
    // It could be a user-supplied password.
    let cocoon = Cocoon::new(b"secret password");

    // Dump the serialized database into a file as an encrypted container.
    let container = cocoon.dump(encoded, &mut file)?;

    Ok(())
}

Crate Features

You can customize the package compilation with the following feature set:

FeatureDescription
stdEnables almost all API, including I/O, excluding getrandom feature.
allocEnables API with memory allocation, but without std dependency.
getrandomEnables Cocoon::from_entropy.
no featuresCreation and decryption a cocoon on the stack with no thread RNG, I/O, heap.

std is enabled by default, so you can just link the cocoon to you project:

[dependencies]
cocoon = "0"

To use no features:

[dependencies]
cocoon = { version = "0", default-features = false }

To use only alloc feature:

[dependencies]
cocoon = { version = "0", default-features = false, features = ['alloc'] }

Cryptography

256-bit cryptography is chosen as a Cocoon baseline.

Cipher (AEAD)Key Derivation Function (KDF)
Chacha20-Poly1305PBKDF2-SHA256: 100000 iterations
AES256-GCM
  • Key: 256-bit.
  • Salt for KDF: random 128-bit + predefined part.
  • Nonce for encryption: random 96-bit.

Key derivation parameters comply with NIST SP 800-132 recommendations (salt, iterations), and cipher parameters (key, nonce) fit requirements of a particular cipher. AEAD is chosen in order to authenticate encrypted data together with an unencrypted header.

Zeroization

The encryption key is wrapped into a zeroizing container (provided by zeroize crate), which means that the key is erased automatically once it is dropped.

Container Creation

First, a random material is generated. A salt is going to get mixed into a master key, and a nonce is used for AEAD encryption. All arrays are put into a header which prefixes the final container.

Salt and nonce

Then a master key is derived from a password using selected Key Derivation Function (KDF, e.g. PBKDF2) and a random salt.

Master key

At this moment we have everything to encrypt data and to create a container. Authenticated Encryption with Associated Data (AEAD) is used to encrypt data and to produce a tag which controls integrity of both header and data. The tag is deliberately placed at the beginning that allows to detach the whole prefix (header and tag) which helps certain cases, e.g. it allows to work on stack, makes API more flexible, gets additional control over the container format.

Cocoon creation

Container can be dumped to file, or it can be kept in the buffer.

Container Parsing

It starts from header parsing because random material is needed to restore a master key in order to decrypt a data.

Cocoon header parsing

Random generator is not needed in this case. (That's why Cocoon::parse_only is provided as an alternative way to initialize Cocoon to only parse a container without necessity to initialize RNG.)

A master key is derived from a password and a salt.

Master key generation

Finally, integrity of all parts is verified and data is decrypted.

Cocoon parsing

Structs

Cocoon

Creates an encrypted container to hide your data inside of it using a user-supplied password.

MiniCocoon

This is a mini cocoon for a convenient and cool encryption.

Enums

CocoonCipher

256-bit AEAD ciphers (Authenticated Encryption with Associated Data).

CocoonKdf

Key derivation functions (KDF) to derive master key from user password. PBKDF2 by default.

Error

Error variants produced by the Cocoon API.

Constants

MINI_PREFIX_SIZE

The size of the cocoon prefix which appears in detached form in MiniCocoon::encrypt.

PREFIX_SIZE

The size of the cocoon prefix which appears in detached form in Cocoon::encrypt.