Fix cipher type

This commit is contained in:
Craig Everett 2024-09-26 22:03:39 +09:00
parent 6a8748b05e
commit 9d092e7f55

View File

@ -13,7 +13,7 @@
-record(key, -record(key,
{name = "" :: string(), {name = "" :: string(),
id = <<>> :: clutch:id(), id = <<>> :: clutch:id(),
pair = #{} :: #{public := binary(), secret := binary()}, pair = #{} :: #{public := binary(), secret := binary()},
type = {eddsa, 256} :: {Cipher :: atom, Bitsize :: pos_integer()}}). type = {{eddsa, ed25519}, 256} :: {Cipher :: term(), Size :: pos_integer()}}).