commit 1e37c2acdcfe3949eb8f2c74b05135669968f080 Author: Jesús Pérez Date: Thu Aug 15 10:47:52 2024 +0100 init repo diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..e03fccf --- /dev/null +++ b/.gitignore @@ -0,0 +1,13 @@ +/sitehome +/config +target +Cargo.lock +.DS_Store +.idea +workspace.code-workspace +shunit2 +._.DS_Store +.VSCodeCounter +wrks +tmp +local_bin diff --git a/README.md b/README.md new file mode 100644 index 0000000..422a06e --- /dev/null +++ b/README.md @@ -0,0 +1,44 @@ + +# [TII CL Rust POC](./) + +[Rust Cryptograpy Lib Proof-of-Concept](./) following **UCF model** (Unified Cryptographic Framework) Proof-of-Concept including existing C libraries with source code not delivered + +TII CL Rust POC + +> [!NOTE] +> [TII CL Rust POC](./) Design, Develop and Deploy all interfaces + +> [!CAUTION] +> Code not published here as it belongs to TII CRC + + ## Features + +[TII CL Rust POC](./) a friendly Ecosystem for a Rust Cryptographic library + +- **Layout** Implementation based in UCF model, layer:Core, Higherorder, Api, Distribution. It works for basic POC with cryptographic implemented elements: SHA2 (from C lipsodium ), SHA3, Elliptic Curves: P256 and P384 +- **Cryptographic Algorithms** has been implemented with Tests and Benchmark options. Code documentation connected with DocServer +- Using existing libsodium as C library to prototype best **FFI integration** as best unsafe interchange between C and Rust +- Generators allow to use implemented items as templates for new ones by creating a whole structure in all Library Layers on the fly for fast prototype, migration and evaluation (make UCF easy to use) +- **Static distribution library** builder works for basic POC, some automation for build and distribution in a multi-platform context for development and production, depends on infrastructure and platform +- A planned builder interface with options to create and sign deliveries for evaluation and production, by **cargo features** and **platform selection** for a custom product without too much dev, code or infrastructure knowledge +- **Adapters** as basic use cases implementation for some programming languages: C, Rust, Python and Go. In Rust a CLI app was build for testing purposes +- **Documentation** graphic part, UI and index content, publishing or local build (original **Rust mdbook** fixed for absolute links and officially reported), several plugins has been used for better UI experience and infrastructure automation developed for CDCI in a production/development platforms +- [DocServer](/jesus/docserver) a Rust web server for mdbooks created with authentication and authorizations (permissions based on roles), developed to control access for static content like documentation (books and code) with a lot of options for settings +- **Documentations access control and log info** for users and groups of them by separating content for development, distribution or future versions, etc Under one instance server. Can be implemented in a local or public infrastructure with automations CDCI +- **Infrastructure** easy to use and secure/consistent life-cycle process, options, testing, scenarios or contexts, based on private resources +- **Self-hosted repository as a SST** (single source of truth) by gitea project +- **Crates and Library modules** availability: local, private access, mixed. Dependencies control and Sync. Architecture model created for fully private and self hosted use case +- **Documentation and guides** architecture for [DocServer](/jesus/docserver) and building process via repo actions +- **Targets availability via CD/CI** [provision architecture](/jesus/provisioning) for build and distribution + +## UCF model (Unified Cryptographic Framework) + +
TII CL Rust UCF
+ +### Development view + +
TII CL Rust UCF Dev
+ +### Distribution view + +
TII CL Rust UCF Dev
diff --git a/images/ce_in_rust.svg b/images/ce_in_rust.svg new file mode 100644 index 0000000..acb92da --- /dev/null +++ b/images/ce_in_rust.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/images/tii_cl_logo_dev_book.svg b/images/tii_cl_logo_dev_book.svg new file mode 100644 index 0000000..d782526 --- /dev/null +++ b/images/tii_cl_logo_dev_book.svg @@ -0,0 +1 @@ +dev \ No newline at end of file diff --git a/images/ucf_dist_box.png b/images/ucf_dist_box.png new file mode 100644 index 0000000..f8f0d97 Binary files /dev/null and b/images/ucf_dist_box.png differ diff --git a/images/ucf_dist_prog_langs.png b/images/ucf_dist_prog_langs.png new file mode 100644 index 0000000..23d1214 Binary files /dev/null and b/images/ucf_dist_prog_langs.png differ diff --git a/images/ucf_prog_langs.png b/images/ucf_prog_langs.png new file mode 100644 index 0000000..01169c1 Binary files /dev/null and b/images/ucf_prog_langs.png differ