🪪 @pagopa/io-react-native-wallet
Library which provides a high level abstraction to interact with the IT-Wallet ecosystem via a predefined flows, a set of utilities and helpers.
Follows the eudi-wallet-it-docs specifications, currently aligned with version 0.7.1.
Dependencies
Installation
yarn install @pagopa/io-react-native-wallet
Contexts
The library makes use of contexts to delegate certain aspects of the implementation to the application. Some of these aspects might greatly vary depending on the consumer application. This allows the library to be more flexible by not forcing the application to use a specific implementation and also to focus on the core functionalities.
Currently the library uses the following contexts:
CryptoContext (cryptographic assets handling)
User flows implementions make use of tokens signed using asymmetric key pairs. Such cryptographic keys are managed by the device according to its specifications. It's not the intention of this package to handle such cryptographic assets and their peculiarities; instead, an handy interface is used to provide the right abstraction to allow responsibilities segregation:
- The application knows who to generate/store/delete keys;
- The package knows when and where to use them.
The interface is CryptoContext
inherited from the @pagopa/io-react-native-jwt
package:
The suggested library to manage cryptographic assets is io-react-native-crypto.
export interface CryptoContext {
getPublicKey: () => Promise<JWK>;
getSignature: (value: string) => Promise<string>;
}
This package provides an helper to build a CryptoContext
object bound to a given key tag
import { createCryptoContextFor } from "@pagopa/io-react-native-wallet";
const ctx = createCryptoContextFor("my-tag");
The
Be sure the key for my-tag
already exists.
IntegrityToken (device integrity)
In order to ensure the integrity of the device, the library asks the consumer application to provide a way to generate a token that can be used to verify the device integrity. This is done by providing an IntegrityToken object formed as follows:
export interface IntegrityContext {
getHardwareKeyTag: () => string;
getAttestation: (nonce: string) => Promise<string>;
getHardwareSignatureWithAuthData: (
clientData: string
) => Promise<HardwareSignatureWithAuthData>;
}
Usually this is achieved by using Google Play Integrity API and Key Attestation on Android, DCAppAttestService on iOS.
The suggested library to manage integrity is io-react-native-integrity.
appFetch (making HTTP requests)
This package is compatibile with any http client which implements Fetch API. Functions that makes http requests allow for an optional appFetch
parameter to provide a custom http client implementation. If not provided, the built-in implementation on the runtime is used.
Flows
Different flows are provided to perform common operations. Each flow is a set of steps that must be executed in a given order. The documentation is provided inside the related folder:
- Wallet Instance
- Credentail
Example
An example app is provided in example folder which demostrates how to implemente these flows. To run it, follow the instructions in the README.
Ecosystem
io-react-native-wallet
is designed to be used in io-app and its ecosystem. There are a few libraries that can be used to implement the context required to implement the flows defined by this package.
Below there's a list of the libraries and a schema of how they interact with each other:
graph TD;
ioa[io-app]
iornw[io-react-native-wallet]
iornc[io-react-native-crypto]
iorni[io-react-native-integrity]
iornss[io-react-native-secure-storage]
iornjwt[io-react-native-jwt]
rncie[react-native-cie]
rnw(react-native-webview)
ioa --> iornw
iornw --> iornjwt
iornw --> rncie
iornw --> rnw
subgraph IoApp Deps
direction TB
iornc
iorni
iornlu
iornss
end
subgraph IoRnWallet Deps
iornjwt
rncie
rnw
end
ioa --> |dependency to implement CryptoContext| iornc
ioa --> |dependency to implement IntegrityContext| iorni
ioa --> |dependency to implement AuthorizationContext| iornlu
ioa --> |dependency to store credentials| iornss