Add ability to hide password images

This disables loading of favicon images associated with password entries
and hides any images that are already loaded, using the generic icon
instead.

The key benefit to this option is to prevent passforios revealing that a
given device has a password in its store, which could be gleaned from
the fact that favicons are being loaded in this manner.
This commit is contained in:
David Beitey 2019-02-27 21:49:21 +10:00 committed by Mingshen Sun
parent 8351c16d75
commit f98d56753b
4 changed files with 46 additions and 4 deletions

View file

@ -39,6 +39,7 @@ public extension DefaultsKeys {
static let isRememberPGPPassphraseOn = DefaultsKey<Bool>("isRememberPGPPassphraseOn")
static let isRememberGitCredentialPassphraseOn = DefaultsKey<Bool>("isRememberGitCredentialPassphraseOn")
static let isShowFolderOn = DefaultsKey<Bool>("isShowFolderOn")
static let isHidePasswordImagesOn = DefaultsKey<Bool>("isHidePasswordImagesOn")
static let isSearchDefaultAll = DefaultsKey<Bool>("isSearchDefaultAll")
static let passwordGeneratorFlavor = DefaultsKey<String>("passwordGeneratorFlavor")