Package ghidra.security
Interface KeyStorePasswordProvider
-
- All Known Subinterfaces:
ClientAuthenticator
- All Known Implementing Classes:
DefaultClientAuthenticator
,HeadlessClientAuthenticator
,PasswordClientAuthenticator
,PopupKeyStorePasswordProvider
public interface KeyStorePasswordProvider
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description char[]
getKeyStorePassword(java.lang.String keystorePath, boolean passwordError)
Requests password for keystore file
-
-
-
Method Detail
-
getKeyStorePassword
char[] getKeyStorePassword(java.lang.String keystorePath, boolean passwordError)
Requests password for keystore file- Parameters:
keystorePath
- keystore file pathpasswordError
- if true this is a repeated prompt due to a password use failure- Returns:
- password or null, if not null caller will clear array when no longer needed.
-
-