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 mut new_params = default;
new_params.conf_path = "../demo/conf/conf_json.yaml".to_owned;
new_params.mode = MASK;
new_params.file_type = JSON;
let mut new_app = new.await.unwrap;
new_app.load_job_config.await.unwrap;
let metrics = new_app.process.await.unwrap;
Roadmap
- csv processor
- json processor
- SDK for the med_core engine