ruapu/erlang
2024-03-04 21:45:40 +08:00
..
c_src updated erlang binding (#72) 2024-03-04 21:45:40 +08:00
src Add erlang binding (#54) 2024-02-29 21:42:14 +08:00
.gitignore updated erlang binding (#72) 2024-03-04 21:45:40 +08:00
CMakeLists.txt updated erlang binding (#72) 2024-03-04 21:45:40 +08:00
Makefile Add erlang binding (#54) 2024-02-29 21:42:14 +08:00
Makefile.win Add erlang binding (#54) 2024-02-29 21:42:14 +08:00
README.md updated erlang binding (#72) 2024-03-04 21:45:40 +08:00
rebar.config Add erlang binding (#54) 2024-02-29 21:42:14 +08:00
rebar.lock Add erlang binding (#54) 2024-02-29 21:42:14 +08:00
release.sh updated erlang binding (#72) 2024-03-04 21:45:40 +08:00

ruapu erlang binding

Hex pm Docs

This is an Erlang/OTP binding for ruapu.

Installation

To compile the module you simply run rebar3 compile.

To run the unit tests run rebar3 eunit.

To build the documentation run rebar edoc.

To use ruapu in your project you can just add it as a dependency in your rebar.config file in the following way:

{deps, [
  {ruapu, "0.1.0"}
]}

Usage

The getopt module provides two functions:

ruapu:supports(ISA :: string() | atom() | binary()) -> boolean().

ruapu:rua() -> {ok, [string()]} | {error, string()}.

For example:

% pass the ISA as a string, atom or binary
1> ruapu:supports("neon").
true
2> ruapu:supports(neon).
true
3> ruapu:supports(<<"neon">>).
true
% get all supported ISAs
4> ruapu:rua().
{ok,["neon","vfpv4","asimdrdm","asimdhp","asimddp",
     "asimdfhm","bf16","i8mm","pmull","crc32","aes","sha1",
     "sha2","sha3","sha512","amx"]}

For developers

To release a new version of the library, you need to use the release.sh script. It will copy the ruapu.h to the c_src directory so that it can included in the released package.