Data Vault is a library for storing and retrieving Credit Card data via Tokens.
toml
data_vault = "^0.2"
```rust,norun
use crate::traits::DataVault; use crate::encryption::traits::Encryption;
use crate::redisdatavault::RedisDataVault;
use crate::encryption::AesGcmSivEncryption;
use crate::tokenizer::Blake3Tokenizer;
use credit_card::CreditCard;
let vault = RedisDataVault::
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) ```
String
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
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.