Package org.bitcoinj.crypto
Interface TrustStoreLoader
-
- All Known Implementing Classes:
TrustStoreLoader.DefaultTrustStoreLoader
,TrustStoreLoader.FileTrustStoreLoader
public interface TrustStoreLoader
An implementation of TrustStoreLoader handles fetching a KeyStore from the operating system, a file, etc. It's necessary because the JavaKeyStore
abstraction 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 class
TrustStoreLoader.DefaultTrustStoreLoader
static class
TrustStoreLoader.FileTrustStoreLoader
-
Field Summary
Fields Modifier and Type Field Description static java.lang.String
DEFAULT_KEYSTORE_PASSWORD
static java.lang.String
DEFAULT_KEYSTORE_TYPE
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.security.KeyStore
getKeyStore()
-
-
-
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
-
-