Package | Description |
---|---|
org.bitcoinj.crypto |
The crypto package contains classes that work with key derivation algorithms like scrypt (passwords to AES keys),
BIP 32 hierarchies (chains of keys from a root seed), X.509 utilities for the payment protocol and other general
cryptography tasks.
|
org.bitcoinj.protocols.payments |
The BIP70 payment protocol wraps Bitcoin transactions and adds various useful features like memos, refund addresses
and authentication.
|
Modifier and Type | Class and Description |
---|---|
static class |
TrustStoreLoader.DefaultTrustStoreLoader |
static class |
TrustStoreLoader.FileTrustStoreLoader |
Modifier and Type | Method and Description |
---|---|
static ListenableFuture<PaymentSession> |
PaymentSession.createFromBitcoinUri(BitcoinURI uri,
boolean verifyPki,
TrustStoreLoader trustStoreLoader)
Returns a future that will be notified with a PaymentSession object after it is fetched using the provided uri.
|
static ListenableFuture<PaymentSession> |
PaymentSession.createFromUrl(String url,
boolean verifyPki,
TrustStoreLoader trustStoreLoader)
Returns a future that will be notified with a PaymentSession object after it is fetched using the provided url.
|
Constructor and Description |
---|
PaymentSession(Protos.PaymentRequest request,
boolean verifyPki,
TrustStoreLoader trustStoreLoader)
Creates a PaymentSession from the provided
Protos.PaymentRequest . |
Copyright © 2016. All rights reserved.