class Eth::Key::Encrypter

def salt

def salt
  @salt ||= if options[:salt]
    hex_to_bin options[:salt]
  else
    SecureRandom.random_bytes(salt_length)
  end
end