Current section

Files

Jump to
certifi src certifi.erl
Raw

src/certifi.erl

-module(certifi).
-compile({parse_transform, certifi_pt}).
-export([cacerts/0]).
%% @doc CACerts builds an X.509 certificate list containing the Mozilla CA
%% Certificate that can then be used via the cacerts setting in ssl options
%% passed to the connect function.
cacerts() ->
%% Actual implementation replaced by parse transform.
ok.