42 releases

0.104.0-alpha.2 Oct 28, 2025
0.103.8 Oct 28, 2025
0.103.4 Jul 10, 2025
0.103.1 Mar 25, 2025
0.100.1 Mar 28, 2023

#210 in Cryptography

Download history 4571650/week @ 2025-07-24 4483627/week @ 2025-07-31 4702714/week @ 2025-08-07 4465616/week @ 2025-08-14 4501637/week @ 2025-08-21 5199529/week @ 2025-08-28 4662704/week @ 2025-09-04 4749820/week @ 2025-09-11 4761359/week @ 2025-09-18 5027920/week @ 2025-09-25 5108963/week @ 2025-10-02 5008540/week @ 2025-10-09 5160370/week @ 2025-10-16 5465488/week @ 2025-10-23 5496437/week @ 2025-10-30 4587231/week @ 2025-11-06

21,665,973 downloads per month
Used in 7,817 crates (96 directly)

ISC license

390KB
7K SLoC

Build Status Coverage Status (codecov.io) Documentation Chat

webpki is a library that validates Web PKI (TLS/SSL) certificates. It's used by Rustls to handle certificate-related tasks required for implementing TLS clients and servers.

webpki is written in Rust and uses ring for cryptographic operations and low-level parsing.

This is a fork of the original webpki project which adds a number of features required by the rustls project. This fork is released as the rustls-webpki crate, with versions starting 0.100.0 so as to not confusingly overlap with webpki versions.

Features

  • Representing trust anchors - webpki requires the caller to bootstrap trust by explicitly specifying a set of trust anchors using the TrustAnchor type.

  • Parsing certificates - webpki can convert from the raw encoded form of a certificate into something that can be used for making trust decisions.

  • Path building - webpki can determine if a certificate for an end entity like a website or client identity was issued by a trust anchor, or a series of intermediate certificates the trust anchor has endorsed.

  • Name/usage validation - webpki can determine if a certificate is valid for a given DNS name or IP address by considering the allowed usage of the certificate and additional constraints.

Limitations

webpki offers a minimal feature set tailored to the needs of Rustls. Notably it does not offer:

  • Support for self-signed certificates
  • Certificate or keypair generation
  • Access to arbitrary certificate extensions
  • Parsing/representation of certificate subjects, or human-friendly display of these fields

For these tasks you may prefer using webpki in combination with libraries like x509-parser and rcgen.

Changelog

Release history can be found on GitHub.

Demo

See https://github.com/rustls/rustls#example-code for an example of using webpki.

License

See LICENSE. This project happily accepts pull requests without any formal copyright/contributor license agreement.

Bug Reporting

Please refer to the SECURITY policy for security issues. All other bugs should be reported as GitHub issues.

Dependencies

~0.1–27MB
~544K SLoC