Packages
barrel_crypto
1.0.0
Encryption primitives and key providers for Barrel (AES-256-GCM envelope, offset-addressable CTR, HKDF key derivation)
Current section
Files
Jump to
Current section
Files
barrel_crypto
rebar.config
rebar.config
{erl_opts, [debug_info, warnings_as_errors]}.
{deps, []}.
{project_plugins, [rebar3_hex, rebar3_ex_doc]}.
{eunit_opts, [verbose]}.
{cover_enabled, true}.
%% Library API: exports are consumed by the facade/external callers, so do not
%% enable exports_not_used (it would flag every public function).
{xref_checks, [
undefined_function_calls,
undefined_functions,
locals_not_used
]}.
{hex, [{doc, ex_doc}]}.
{ex_doc, [
{source_url, <<"https://github.com/barrel-db/barrel">>},
{source_url_pattern,
<<"https://github.com/barrel-db/barrel/blob/main/apps/barrel_crypto/%{path}#L%{line}">>},
{homepage_url, <<"https://barrel-db.eu">>},
{logo, "assets/logo.png"},
{extras, [
<<"README.md">>,
<<"CHANGELOG.md">>,
<<"LICENSE">>
]},
{main, <<"readme">>},
{api_reference, true},
{groups_for_extras, [
{<<"About">>, [<<"CHANGELOG.md">>, <<"LICENSE">>]}
]},
{before_closing_head_tag, #{html => "<style>
:root {
--main: #006B77; --mainDark: #00565F; --mainDarkest: #003D44;
--mainLight: #75B6B2; --mainLightest: #E6F2F3;
--link-color: #C65E59; --link-visited-color: #C65E59;
--sidebarAccentMain: #C65E59; --searchAccentMain: #C65E59;
}
body.dark {
--main: #75B6B2; --mainDark: #006B77; --mainDarkest: #003D44;
--mainLight: #9BCECB; --mainLightest: #123033;
--link-color: #E0837E; --link-visited-color: #E0837E;
--sidebarAccentMain: #E0837E; --searchAccentMain: #E0837E;
}
</style>"}}
]}.