saltywitch/lib/salty_witch/shorthash.ex

10 lines
181 B
Elixir
Raw Normal View History

2023-05-31 11:31:03 +00:00
defmodule SaltyWitch.ShortHash do
def keygen do
SaltyWitch.NIF.shorthash_keygen()
end
def shorthash(key, message) do
SaltyWitch.NIF.shorthash(key, message)
end
end