All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.quorum.tessera.cli.keypassresolver.KeyPasswordResolver Maven / Gradle / Ivy

package com.quorum.tessera.cli.keypassresolver;

import com.quorum.tessera.config.Config;
import java.util.ServiceLoader;

public interface KeyPasswordResolver {

  /**
   * Attempts to resolve all the locked keys using/fetching the required password.
   *
   * 

The passwords may be provided in the configuration, or they may be fetched from other * sources as required. * * @param config the configuration that contains the keys to resolve, as well as some predefined * passwords */ void resolveKeyPasswords(Config config); static KeyPasswordResolver create() { return ServiceLoader.load(KeyPasswordResolver.class).findFirst().get(); } }





© 2015 - 2025 Weber Informatics LLC | Privacy Policy