log("================================================================");
}
private void appendInfoToKeySecretData() throws Exception {
Escaper esc = MakiDI.get().fromStock(Escaper.class);
KeyValueMaker maker = MakiDI.get().fromStock(KeyValueMaker.class);
key_secret_data.getProperties().put("id_app_common", esc.escapeValue(
maker.doPassWithNoSpecial(32, true, true, true)
+ "."
+ dataP()
+ "."
+ System.currentTimeMillis()));
key_secret_data.getProperties().put("makipass_version", esc.escapeValue(Constants.VERSION));
key_secret_data.getProperties().put("creation_date", esc.escapeValue(dataP()));
key_secret_data.getProperties().put("user_name", esc.escapeValue(System.getProperty("user.name", "undefined")));
key_secret_data.getProperties().put("user_home", esc.escapeValue(System.getProperty("user.home", "undefined")));
key_secret_data.getProperties().put("user_dir", esc.escapeValue(System.getProperty("user.dir", "undefined")));
}