Class CachedPasswordProvider
java.lang.Object
ghidra.formats.gfilesystem.crypto.CachedPasswordProvider
- All Implemented Interfaces:
CryptoProvider
,PasswordProvider
Caches passwords used to unlock a file.
Threadsafe.
-
Nested Class Summary
Nested classes/interfaces inherited from interface ghidra.formats.gfilesystem.crypto.CryptoProvider
CryptoProvider.Session
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionvoid
addPassword
(FSRL fsrl, Password password) Adds a password / file combo to the cache.void
Remove all cached information.int
getCount()
Returns the number of items in cachegetPasswordsFor
(FSRL fsrl, String prompt, CryptoProvider.Session session) Returns a sequence of passwords (ordered by quality) that may apply to the specified file.
-
Constructor Details
-
CachedPasswordProvider
public CachedPasswordProvider()
-
-
Method Details
-
addPassword
Adds a password / file combo to the cache. -
clearCache
public void clearCache()Remove all cached information. -
getCount
public int getCount()Returns the number of items in cache- Returns:
- number of items in cache
-
getPasswordsFor
Description copied from interface:PasswordProvider
Returns a sequence of passwords (ordered by quality) that may apply to the specified file.- Specified by:
getPasswordsFor
in interfacePasswordProvider
- Parameters:
fsrl
-FSRL
path to the password protected fileprompt
- optional prompt that may be displayed to a usersession
- a place to hold state values that persist across related queries- Returns:
Iterator
of possible passwords
-