class Eth::Key::Encrypter

def iv

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