# erlang-certifi **Repository Path**: summergaolib/erlang-certifi ## Basic Information - **Project Name**: erlang-certifi - **Description**: SSL Certificates for Erlang - **Primary Language**: Unknown - **License**: BSD-3-Clause - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2020-06-09 - **Last Updated**: 2024-08-15 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # [certifi](https://github.com/certifi/erlang-certifi) This Erlang library contains a CA bundle that you can reference in your Erlang application. This is useful for systems that do not have CA bundles that Erlang can find itself, or where a uniform set of CAs is valuable. This an Erlang specific port of [certifi](https://certifi.io/). The CA bundle is derived from Mozilla's canonical set. ## Usage ```erlang Cacerts = certifi:cacerts(), Ssloptions = [{verify, verify_peer}, {depth, 99}, {cacerts, Cacerts}], ssl:connect( "example.com", 443, Ssloptions] ). ``` You can also retrieve the path to the file and load it by yourself if needed: ```erlang Path = certifi:cacertfile(). ``` ## Build & test ```shell $ rebar3 eunit ```