Importing users with md5 hashed passwords

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

Hey @ldibello

We support the following list, and few examples also:

Do have a look and let me know if this helps.

Regards,
Sid

2 Likes

Thanks, I realized that not support md5 with iteration and legth.

1 Like

Perfect! Let us know if you have any questions down the road!

This topic was automatically closed 15 days after the last reply. New replies are no longer allowed.