#encryption-decryption #masking #cli #cli-tool #engine #powered #csv-json

med_core

A Rust Powered Core Engine for M.E.D. Masking, Encryption, and Decryption CSV/JSON

21 releases (4 breaking)

0.6.4 Jul 8, 2023
0.6.3 Jul 7, 2023
0.6.0 Jun 30, 2023
0.5.9 Jun 25, 2023
0.1.0 May 28, 2023

#2103 in Command line utilities


Used in med_cli

Apache-2.0

76KB
2K SLoC

Crates.io Actions Status codecov Crates.io

M.E.D. (Mask, Encrypt, Decrypt) - The Core Engine for Masking, Encryption, and Decryption the CSV/JSON files

The core engine design for the plugin by different use case and context.

Currently its the CLI interface. If you have different programming or integration need, you can interact with the Core by is APIs.

Example


let now = Instant::now();

let mut new_params = Params::default();
new_params.conf_path = "../demo/conf/conf_json.yaml".to_owned();
new_params.file_path = "../demo/data/input/csv".to_owned();
new_params.mode = Mode::MASK;
new_params.file_type = FileType::CSV;

let mut new_app = App::new(new_params.clone()).await.unwrap();
let metrics = new_app.process().await.unwrap();
let audit_id = new_app.update_audit(format!("{:?}", now.elapsed())).await.unwrap();

Roadmap

  • csv processor
  • json processor
  • SDK for the med_core engine

Dependencies

~40–57MB
~1M SLoC