#encryption-decryption #encryption-key #configuration #deserializer #applications #values #information

serde-encrypted-value

A Serde Deserializer wrapper which transparently decrypts encrypted values

13 releases

0.4.7 Mar 5, 2024
0.4.6 Jan 9, 2023
0.4.5 Dec 12, 2022
0.4.4 Sep 28, 2022
0.1.0 Mar 7, 2017

#260 in Encoding

Download history 2/week @ 2024-01-04 53/week @ 2024-01-11 5/week @ 2024-01-25 196/week @ 2024-02-01 138/week @ 2024-02-08 8/week @ 2024-02-15 13/week @ 2024-02-22 85/week @ 2024-02-29 274/week @ 2024-03-07 922/week @ 2024-03-14 1195/week @ 2024-03-21 1090/week @ 2024-03-28

3,507 downloads per month
Used in 2 crates (via witchcraft-server)

Apache-2.0

31KB
687 lines

serde-encrypted-value

Documentation

Serde deserializer which transparently decrypts embedded encrypted strings.

Application configurations typically consist mostly of non-sensitive information, with a few bits of information that is sensitive such as authentication secrets or cookie encryption keys. Storing those sensitive values in an encrypted form at rest can defend against leakage when, for example, copy/pasting the config as long as the encryption key is not additionally leaked.

It is compatible with https://github.com/palantir/encrypted-config-value, though unlike that library, serde-encrypted-value does not support RSA.

Usage

Assume we have a conf/encrypted-config-value.key file that looks like:

AES:NwQZdNWsFmYMCNSQlfYPDJtFBgPzY8uZlFhMCLnxNQE=

And a conf/config.json file that looks like:

{
    "secret_value": "${enc:5BBfGvf90H6bApwfxUjNdoKRW1W+GZCbhBuBpzEogVBmQZyWFFxcKyf+UPV5FOhrw/wrVZyoL3npoDfYjPQV/zg0W/P9cVOw}",
    "non_secret_value": "hello, world!"
}
extern crate serde;
extern crate serde_json;
extern crate serde_encrypted_value;

#[macro_use]
extern crate serde_derive;

use serde::Deserialize;
use std::io::Read;
use std::fs::File;

#[derive(Deserialize)]
struct Config {
    secret_value: String,
    non_secret_value: String,
}

fn main() {
    let key = "conf/encrypted-config-value.key";
    let key = serde_encrypted_value::Key::from_file(key)
        .unwrap();

    let mut config = vec![];
    File::open("conf/config.json")
        .unwrap()
        .read_to_end(&mut config)
        .unwrap();

    let mut deserializer = serde_json::Deserializer::from_slice(&config);
    let deserializer = serde_encrypted_value::Deserializer::new(
        &mut deserializer, key.as_ref());
    let config = Config::deserialize(deserializer).unwrap();

    assert_eq!(config.secret_value, "L/TqOWz7E4z0SoeiTYBrqbqu");
    assert_eq!(config.non_secret_value, "hello, world!");
}

License

This repository is made available under the Apache 2.0 License.

Dependencies

~2–3MB
~60K SLoC