Current section

Files

Jump to
feistel_cipher lib feistel_cipher.ex
Raw

lib/feistel_cipher.ex

defmodule FeistelCipher do
@moduledoc false
def default_functions_salt do
1_076_943_109
end
def random_key do
<<key::31, _::1>> = :crypto.strong_rand_bytes(4)
key
end
end