Hi, I need to import users with hash generated with this lines…
public PasePasswordEncryptor() {
super();
this.digester = new StandardStringDigester();
this.digester.setAlgorithm("MD5");
this.digester.setIterations(10000);
this.digester.setSaltSizeBytes(16);
this.digester.initialize();
}
How have to be the correct syntax in the json file?
Regards.
Leandro