Current section

Files

Jump to
gleam_crypto src gleam_crypto_ffi.erl
Raw

src/gleam_crypto_ffi.erl

-module(gleam_crypto_ffi).
-export([hmac/3]).
hmac(Data, Algorithm, Key) ->
crypto:mac(hmac, Algorithm, Key, Data).