Welcome to mirror list, hosted at ThFree Co, Russian Federation.

PasswordFinder.java « openssl « spongycastle « org « java « main « src « pkix - gitlab.com/quite/humla-spongycastle.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: eb981fd51d91fd8989563abd2156be10b758af93 (plain)
1
2
3
4
5
6
7
8
9
package org.spongycastle.openssl;

/**
 * call back to allow a password to be fetched when one is requested.
 */
public interface PasswordFinder
{
    public char[] getPassword();
}