{"id":19579738,"url":"https://github.com/wolfssl/rustls-wolfcrypt-provider","last_synced_at":"2026-02-08T23:04:46.942Z","repository":{"id":243722853,"uuid":"811373759","full_name":"wolfSSL/rustls-wolfcrypt-provider","owner":"wolfSSL","description":"Code that lets you use wolfcrypt as crypto provider for rustls.","archived":false,"fork":false,"pushed_at":"2025-02-20T22:42:30.000Z","size":445,"stargazers_count":7,"open_issues_count":1,"forks_count":3,"subscribers_count":20,"default_branch":"main","last_synced_at":"2025-04-27T08:36:28.443Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"","language":"Rust","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/wolfSSL.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,"publiccode":null,"codemeta":null}},"created_at":"2024-06-06T13:24:17.000Z","updated_at":"2025-02-23T03:22:53.000Z","dependencies_parsed_at":"2025-03-03T08:00:28.413Z","dependency_job_id":null,"html_url":"https://github.com/wolfSSL/rustls-wolfcrypt-provider","commit_stats":null,"previous_names":["gasbytes/rustls-wolfcrypt-provider","wolfssl/rustls-wolfcrypt-provider"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/wolfSSL/rustls-wolfcrypt-provider","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/wolfSSL%2Frustls-wolfcrypt-provider","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/wolfSSL%2Frustls-wolfcrypt-provider/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/wolfSSL%2Frustls-wolfcrypt-provider/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/wolfSSL%2Frustls-wolfcrypt-provider/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/wolfSSL","download_url":"https://codeload.github.com/wolfSSL/rustls-wolfcrypt-provider/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/wolfSSL%2Frustls-wolfcrypt-provider/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29248516,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-08T22:49:53.206Z","status":"ssl_error","status_checked_at":"2026-02-08T22:49:51.384Z","response_time":57,"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":[],"created_at":"2024-11-11T07:18:50.696Z","updated_at":"2026-02-08T23:04:46.916Z","avatar_url":"https://github.com/wolfSSL.png","language":"Rust","funding_links":[],"categories":[],"sub_categories":[],"readme":"# rustls-wolfcrypt-provider\n\nCode that lets you use `wolfCrypt` as a crypto provider for `Rustls`,\nbuilt with `no_std` support as its foundation. The `std` library is pulled in\nonly for testing and during the `build.rs` binding generation; the core crypto\nprovider itself operates independently of `std`.\n\n## Status\n\nThis is in an alpha stage, particularly because the Rustls API is not yet stable.\nThis code currently works with Rustls = 0.23.22.\n\n## Repo Structure\n\n- **rustls-wolfcrypt-provider**: Crate containing the code that lets you use rustls with wolfcrypt as a crypto provider.\n- **wolfcrypt-rs**: Low-level unsafe bindings for wolfcrypt generated using bindgen.\n\n## Cipher Suites (Currently) Supported\n\n### TLS 1.3:\n- `TLS13_CHACHA20_POLY1305_SHA256`\n- `TLS13_AES_128_GCM_SHA256`\n- `TLS13_AES_256_GCM_SHA384`\n\n### TLS 1.2:\n- `TLS12_ECDHE_RSA_WITH_CHACHA20_POLY1305_SHA256`\n- `TLS12_ECDHE_RSA_WITH_AES_128_GCM_SHA256`\n- `TLS12_ECDHE_RSA_WITH_AES_256_GCM_SHA384`\n- `TLS12_ECDHE_ECDSA_WITH_CHACHA20_POLY1305_SHA256`\n- `TLS12_ECDHE_ECDSA_WITH_AES_128_GCM_SHA256`\n- `TLS12_ECDHE_ECDSA_WITH_AES_256_GCM_SHA384`\n\nFor more details about the supported curves, verification/signing methods, and algorithms, please consult the respective folders.\n\n## Usage\n\n### Initial Setup and Installation\n*Rustc 1.77+ is required.*\n\n1. Clone the repository:\n   ```\n   git clone --depth=1 git@github.com:wolfssl/rustls-wolfcrypt-provider.git\n   cd rustls-wolfcrypt-provider/\n   ```\n\n2. Build the wolfcrypt-rs crate to correctly generate the bindings and make sure\n   the build was successful by running the sanity check(s):\n   ```\n   cd wolfcrypt-rs/\n   make build\n   make test\n   ```\n\n   Then change the current directory to the rustls-wolfcrypt-provider, build \n   the crate, followed by running the test to make sure everything is running\n   smoothly:\n   ```\n   cd ../rustls-wolfcrypt-provider/\n   make build\n   make test\n   ```\n\n### Example Usage\nFor `Rustls` usage, consult the `examples` folder in this repository. Each example\ndemonstrates setting up and using `rustls-wolfcrypt-provider` with specific\ncipher suites and configurations.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fwolfssl%2Frustls-wolfcrypt-provider","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fwolfssl%2Frustls-wolfcrypt-provider","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fwolfssl%2Frustls-wolfcrypt-provider/lists"}