*
* @param file location of the existing or new keystore
* @param password to open the existing keystore or protect a new keystore
*/
public SimpleKeystore(File file, String password) throws KeyManagementException {
this(new FileResource(file), password);
}