{"id":16271107,"url":"https://github.com/morpheuslord/adds","last_synced_at":"2026-01-21T00:33:23.881Z","repository":{"id":223992419,"uuid":"762107505","full_name":"morpheuslord/adds","owner":"morpheuslord","description":null,"archived":false,"fork":false,"pushed_at":"2024-02-23T05:17:57.000Z","size":3,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":2,"default_branch":"main","last_synced_at":"2025-04-08T15:37:14.520Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":null,"has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/morpheuslord.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null}},"created_at":"2024-02-23T05:13:42.000Z","updated_at":"2024-02-23T05:13:42.000Z","dependencies_parsed_at":"2024-02-23T06:26:17.349Z","dependency_job_id":"42bd2706-2191-4541-88e2-52b283eb6dd5","html_url":"https://github.com/morpheuslord/adds","commit_stats":null,"previous_names":["morpheuslord/adds"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/morpheuslord/adds","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/morpheuslord%2Fadds","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/morpheuslord%2Fadds/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/morpheuslord%2Fadds/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/morpheuslord%2Fadds/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/morpheuslord","download_url":"https://codeload.github.com/morpheuslord/adds/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/morpheuslord%2Fadds/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28619774,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-20T23:49:58.628Z","status":"ssl_error","status_checked_at":"2026-01-20T23:47:29.996Z","response_time":117,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.5:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2024-10-10T18:12:30.337Z","updated_at":"2026-01-21T00:33:23.867Z","avatar_url":"https://github.com/morpheuslord.png","language":null,"funding_links":[],"categories":[],"sub_categories":[],"readme":"# process mapping\n\n\n## Flow Diagram\n```mermaid\ngraph TD\n    A[Start] --\u003e B(Data Preparation)\n    B --\u003e C(Encryption)\n    C --\u003e D(Adaptive Embedding)\n    D --\u003e E(Embedding Capacity Evaluation)\n    E --\u003e F(PSNR Measurement)\n    F --\u003e G(Experimental Evaluation)\n    G --\u003e H(Analysis and Interpretation)\n    H --\u003e I(Validation and Verification)\n    I --\u003e J[End]\n\n    B --\u003e |1| B1(Select color images)\n    B --\u003e |2| B2(Prepare text data)\n\n    C --\u003e |1| C1(Encrypt images using RSA)\n    C --\u003e |2| C2(Maintain confidentiality and integrity)\n\n    D --\u003e |1| D1(Implement adaptive embedding)\n    D --\u003e |2| D2(Optimize embedding capacity)\n\n    E --\u003e |1| E1(Calculate embedding capacity)\n    E --\u003e |2| E2(Determine max text data per pixel)\n\n    F --\u003e |1| F1(Reconstruct encrypted images)\n    F --\u003e |2| F2(Measure PSNR)\n\n    G --\u003e |1| G1(Conduct experiments)\n    G --\u003e |2| G2(Record experimental data)\n\n    H --\u003e |1| H1(Analyze experimental results)\n    H --\u003e |2| H2(Interpret findings)\n\n    I --\u003e |1| I1(Validate experimental results)\n    I --\u003e |2| I2(Verify methodologies)\n```\n\n## Sequence Diagram\n```mermaid\nsequenceDiagram\n    participant User\n    participant System\n    participant EncryptionService as Encryption Service\n    participant EmbeddingAlgorithm as Embedding Algorithm\n    participant EvaluationModule as Evaluation Module\n    participant AnalysisModule as Analysis Module\n\n    User-\u003e\u003e+System: Initiate Process\n    System-\u003e\u003e+System: Prepare Data\n    System-\u003e\u003e+EncryptionService: Encrypt Images\n    EncryptionService--\u003e\u003e-System: Encrypted Images\n    System-\u003e\u003e+EmbeddingAlgorithm: Adaptive Embedding\n    EmbeddingAlgorithm--\u003e\u003e-System: Embedded Images\n    System-\u003e\u003e+EvaluationModule: Evaluate Capacity \u0026 Measure PSNR\n    EvaluationModule--\u003e\u003e-System: Evaluation Results\n    System-\u003e\u003e+AnalysisModule: Analyze \u0026 Interpret Results\n    AnalysisModule--\u003e\u003e-System: Analysis\n    System-\u003e\u003eSystem: Validate \u0026 Verify Outcomes\n    System--\u003e\u003e-User: Process Complete\n```\n\n## Flow Diagram 2\n```mermaid\ngraph TD\n    A(Start) --\u003e B{Data Prepared?}\n    B --\u003e|No| C(Select \u0026 Prepare Images/Text)\n    B --\u003e|Yes| D(Encrypt Images)\n    C --\u003e D\n    D --\u003e E(Perform Adaptive Embedding)\n    E --\u003e F(Calculate Embedding Capacity)\n    F --\u003e G(Measure PSNR)\n    G --\u003e H(Conduct Experiments)\n    H --\u003e I(Analyze \u0026 Interpret Results)\n    I --\u003e J(Validate \u0026 Verify Outcomes)\n    J --\u003e K(End)\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmorpheuslord%2Fadds","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fmorpheuslord%2Fadds","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmorpheuslord%2Fadds/lists"}