Package org.bitcoinj.crypto
Interface TrustStoreLoader
-
- All Known Implementing Classes:
TrustStoreLoader.DefaultTrustStoreLoader,TrustStoreLoader.FileTrustStoreLoader
public interface TrustStoreLoaderAn implementation of TrustStoreLoader handles fetching a KeyStore from the operating system, a file, etc. It's necessary because the JavaKeyStoreabstraction is not completely seamless and for example we sometimes need slightly different techniques to load the key store on different versions of Android, MacOS, Windows, etc.
-
-
Nested Class Summary
Nested Classes Modifier and Type Interface Description static classTrustStoreLoader.DefaultTrustStoreLoaderstatic classTrustStoreLoader.FileTrustStoreLoader
-
Field Summary
Fields Modifier and Type Field Description static java.lang.StringDEFAULT_KEYSTORE_PASSWORDstatic java.lang.StringDEFAULT_KEYSTORE_TYPE
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.security.KeyStoregetKeyStore()
-
-
-
Field Detail
-
DEFAULT_KEYSTORE_TYPE
static final java.lang.String DEFAULT_KEYSTORE_TYPE
-
DEFAULT_KEYSTORE_PASSWORD
static final java.lang.String DEFAULT_KEYSTORE_PASSWORD
- See Also:
- Constant Field Values
-
-