{"id":13648491,"url":"https://github.com/RustCrypto/rustls-rustcrypto","last_synced_at":"2025-04-22T11:32:41.798Z","repository":{"id":219456241,"uuid":"691119354","full_name":"RustCrypto/rustls-rustcrypto","owner":"RustCrypto","description":"Rustls cryptography provider built on the pure Rust crates from the RustCrypto organization","archived":false,"fork":false,"pushed_at":"2024-11-27T19:59:16.000Z","size":143,"stargazers_count":85,"open_issues_count":21,"forks_count":9,"subscribers_count":10,"default_branch":"master","last_synced_at":"2025-04-10T00:30:01.997Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"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/RustCrypto.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":null,"funding":null,"license":"LICENSE-APACHE","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":"2023-09-13T14:35:40.000Z","updated_at":"2025-04-04T03:36:43.000Z","dependencies_parsed_at":"2024-03-15T22:31:43.621Z","dependency_job_id":"caea0966-16be-4f68-973f-267e55403634","html_url":"https://github.com/RustCrypto/rustls-rustcrypto","commit_stats":{"total_commits":43,"total_committers":6,"mean_commits":7.166666666666667,"dds":0.5581395348837209,"last_synced_commit":"992778d653ca822ee7dddb80ee4a5796c6768f68"},"previous_names":["rustcrypto/rustls-rustcrypto"],"tags_count":2,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/RustCrypto%2Frustls-rustcrypto","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/RustCrypto%2Frustls-rustcrypto/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/RustCrypto%2Frustls-rustcrypto/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/RustCrypto%2Frustls-rustcrypto/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/RustCrypto","download_url":"https://codeload.github.com/RustCrypto/rustls-rustcrypto/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":249535898,"owners_count":21287496,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","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-08-02T01:04:18.046Z","updated_at":"2025-04-22T11:32:41.747Z","avatar_url":"https://github.com/RustCrypto.png","language":"Rust","funding_links":[],"categories":["Rust"],"sub_categories":[],"readme":"# rustls-rustcrypto\n\n[![crate][crate-image]][crate-link]\n[![Docs][docs-image]][docs-link]\n[![Build Status][build-image]][build-link]\n![Apache2/MIT licensed][license-image]\n![Rust Version][rustc-image]\n[![Project Chat][chat-image]][chat-link]\n\n[RustCrypto]-based provider implementation for version 0.23 of [rustls], maintained by the RustCrypto organization.\n\n## ⚠️USE THIS AT YOUR OWN RISK! DO NOT USE THIS IN PRODUCTION⚠️\n\nNot only that this is incomplete that only few selected TLS suites implemented (it should be well enough to cover 70% of the usage), but the elephant in the room is that neither did rustls nor RustCrypto packages were formally verified and certified with FIPS compliance.\n\nNote that RustCrypto performance is generally inferior than ring, but in exchange you got a pure Rust implementation that theoretically compiles everywhere Rust was ported to. In our case, we need to have `std` but foundational support for future `no_std` expansion is already here.\n\n## Supported Cipher Suites\n\n- TLS_ECDHE_ECDSA_WITH_AES_128_GCM_SHA256\n- TLS_ECDHE_ECDSA_WITH_AES_256_GCM_SHA384\n- TLS_ECDHE_ECDSA_WITH_CHACHA20_POLY1305_SHA256\n- TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256\n- TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384\n- TLS_ECDHE_RSA_WITH_CHACHA20_POLY1305_SHA256\n- TLS13_AES_128_GCM_SHA256\n- TLS13_AES_256_GCM_SHA384\n- TLS13_CHACHA20_POLY1305_SHA256\n\n## License\n\nLicensed under either of:\n\n- [Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0)\n- [MIT license](http://opensource.org/licenses/MIT)\n\nat your option.\n\nSome code authored by [@ctz](https://github.com/ctz) was adapted from upstream rustls. Licensed as above with permission.\n\n### Contribution\n\nUnless you explicitly state otherwise, any contribution intentionally submitted\nfor inclusion in the work by you, as defined in the Apache-2.0 license, shall be\ndual licensed as above, without any additional terms or conditions.\n\n[//]: # (badges)\n\n[crate-image]: https://img.shields.io/crates/v/rustls-rustcrypto\n[crate-link]: https://crates.io/crates/rustls-rustcrypto\n[docs-image]: https://docs.rs/rustls-rustcrypto/badge.svg\n[docs-link]: https://docs.rs/rustls-rustcrypto/\n[build-image]: https://github.com/RustCrypto/rustls-rustcrypto/actions/workflows/rustls-rustcrypto.yml/badge.svg\n[build-link]: https://github.com/RustCrypto/rustls-rustcrypto/actions/workflows/rustls-rustcrypto.yml\n[license-image]: https://img.shields.io/badge/license-Apache2.0/MIT-blue.svg\n[rustc-image]: https://img.shields.io/badge/rustc-1.75+-blue.svg\n[chat-image]: https://img.shields.io/badge/zulip-join_chat-blue.svg\n[chat-link]: https://rustcrypto.zulipchat.com/#narrow/stream/434751-TLS\n\n[//]: # (links)\n\n[RustCrypto]: https://github.com/RustCrypto/\n[rustls]: https://github.com/rustls/rustls/\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2FRustCrypto%2Frustls-rustcrypto","html_url":"https://awesome.ecosyste.ms/projects/github.com%2FRustCrypto%2Frustls-rustcrypto","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2FRustCrypto%2Frustls-rustcrypto/lists"}