{"id":47746508,"url":"https://github.com/sibnaofficial/sibna-protc","last_synced_at":"2026-04-05T15:01:33.642Z","repository":{"id":344139920,"uuid":"1180587927","full_name":"SibnaOfficial/sibna-protc","owner":"SibnaOfficial","description":"Home to the Sibna Protocol and cryptographic tools powering secure communication","archived":false,"fork":false,"pushed_at":"2026-04-03T06:53:57.000Z","size":661,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2026-04-03T09:49:07.606Z","etag":null,"topics":["cpp","dart","encryption","project","protocol","rust"],"latest_commit_sha":null,"homepage":"","language":"Rust","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/SibnaOfficial.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":"CONTRIBUTING.md","funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":"SECURITY.md","support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2026-03-13T07:37:07.000Z","updated_at":"2026-04-03T06:54:00.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/SibnaOfficial/sibna-protc","commit_stats":null,"previous_names":["sibnaofficial/libsibna"],"tags_count":4,"template":false,"template_full_name":null,"purl":"pkg:github/SibnaOfficial/sibna-protc","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/SibnaOfficial%2Fsibna-protc","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/SibnaOfficial%2Fsibna-protc/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/SibnaOfficial%2Fsibna-protc/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/SibnaOfficial%2Fsibna-protc/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/SibnaOfficial","download_url":"https://codeload.github.com/SibnaOfficial/sibna-protc/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/SibnaOfficial%2Fsibna-protc/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":31439442,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-05T13:13:19.330Z","status":"ssl_error","status_checked_at":"2026-04-05T13:13:17.778Z","response_time":75,"last_error":"SSL_read: 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":["cpp","dart","encryption","project","protocol","rust"],"created_at":"2026-04-03T01:13:06.241Z","updated_at":"2026-04-05T15:01:33.637Z","avatar_url":"https://github.com/SibnaOfficial.png","language":"Rust","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Sibna Protocol\n\nSibna Protocol is a Rust implementation of the X3DH and Double Ratchet cryptographic protocols designed for robust end-to-end encryption (E2EE). It is dual-licensed under Apache 2.0 and MIT.\n\n## Overview\n\nSibna is a cryptographic library providing a standalone protocol for end-to-end encryption. It is designed to be integrated into applications that require secure communication channels without relying on external infrastructure.\n\n### Core Features\n\n- Perfect Forward Secrecy \u0026 Post-Compromise Security\n- Hybrid cryptography integrating classical X25519 and ML-KEM-768 (FIPS 203)\n- Fixed-block message padding to prevent length analysis\n- Sealed Sender envelopes for metadata protection\n- Direct P2P and relayed transport routing\n\n## Quick Start (Rust)\n\nAdd `sibna_core` to your `Cargo.toml`:\n\n```toml\n[dependencies]\nsibna_core = { path = \"core\", version = \"1.0.4\", features = [\"pqc\", \"relay\"] }\n```\n\nExample usage:\n\n```rust\nuse sibna_core::{SecureContext, Config};\nuse sibna_core::crypto::{CryptoHandler, KeyGenerator};\n\n#[tokio::main]\nasync fn main() -\u003e Result\u003c(), Box\u003cdyn std::error::Error\u003e\u003e {\n    let config = Config::default();\n    let ctx = SecureContext::new(config, Some(b\"SecurePass123!\"))?;\n\n    let session_key = KeyGenerator::generate_key()?;\n    let handler = CryptoHandler::new(session_key.as_ref())?;\n\n    let aad = b\"header_data\";\n    let ciphertext = handler.encrypt(b\"System payload\", aad)?;\n    let plaintext = handler.decrypt(\u0026ciphertext, aad)?;\n\n    assert_eq!(plaintext, b\"System payload\");\n    Ok(())\n}\n```\n\n## Documentation\n\n- [Protocol Specification](PROTOCOL_SPECIFICATION.md)\n- [Security Model](SECURITY.md)\n- [Changelog](CHANGELOG.md)\n\n## License\n\nThis project is dual-licensed under the Apache License 2.0 and the MIT License. See the LICENSE file for details.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsibnaofficial%2Fsibna-protc","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fsibnaofficial%2Fsibna-protc","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsibnaofficial%2Fsibna-protc/lists"}