Online Solr password encryption tool

An utility that allows to hash and salt a solr password to be used in the security.json file for Basic Authentication.
The salt is a random generated String of 16 alphanumeric characters. See Solr Basic Authentication Plugin for reference.

an example security.json file with the encrypted password

{
  "authentication":{ 
    "blockUnknown": true, 
    "class":"solr.BasicAuthPlugin",
    "credentials":{"solr":""}, 
    "realm":"My Solr users", 
    "forwardCredentials": false
  }
}    
    
Github source repository
This project is licensed under the MIT License - see the LICENSE file for details