Data Vault

Data Vault is a library for storing and retrieving Credit Card data via Tokens.

Actions Status codecov crates.io Documentation License

add data_vault as a dependency to Cargo.toml

toml data_vault = "^0.2"

```rust,norun

traits

use crate::traits::DataVault; use crate::encryption::traits::Encryption;

data vault

use crate::redisdatavault::RedisDataVault;

swappable encryption

use crate::encryption::AesGcmSivEncryption;

swappable tokenizer

use crate::tokenizer::Blake3Tokenizer;

credit card type

use credit_card::CreditCard;

let vault = RedisDataVault::::new().unwrap();

let cc = CreditCard { number: "4111111111111111".tostring(), cardholdername: "Graydon Hoare".tostring(), expirationmonth: "01".tostring(), expirationyear: "2023".tostring(), brand: None, securitycode: None };

let token = vault.storecreditcard(&cc).await.unwrap(); let creditcard = vault.retrievecreditcard(&token.tostring()).await.unwrap(); asserteq!(creditcard.number, cc.number) ```

Current Features

Future Features

Performance

This example output the following performance stats with an AMD Ryzen 9 3900X. Showing the possibility of tokenizing ~100,000 credit cards per second. tokenized and stored 100000 credit cards in 1.058474365s retrieved 100000 credit cards in 5.353857633s tokenized, stored, and retrieved 100000 credit cards in 6.412331998s

Notice:

This is under development right now, so interfaces and apis will be changing. If you are interested in using this please create an issue or reach out with your feature request so I can help add it.