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.
- @pagopa/io-react-native-jwt is used to manage JWT tokens;
- @pagopa/react-native-cie is used to manage CIE authentication;
- react-native-webview is used to manage the webview for the CIE authentication flow.
# Install the required dependencies specified in the peerDependencies of the package.json
# Library
yarn install @pagopa/io-react-native-wallet
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 {
/**
* Retrieves the public key to be used in this context.
* MUST be the same key at every invocation.
* @returns The public key to be used
* @throws If no keys are found
*/
getPublicKey: () => Promise<JWK>;
/**
* Produce a cryptographic signature for a given value.
* The signature MUST be produced using the private key paired with the public retrieved by getPublicKey()
* @param value The value to be signed
* @returns The signature
* @throws If no keys are found
*/
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.
AuthorizationContext (strong authentication handling)
Whenever a strong authentication is required, the library asks the consumer application to provide a way to perform the user authentication. This is done by providing a AuthenticationContext object formed as follows:
/**
* Context for authorization during the {@link 03-start-user-authorization.ts} phase.
* It consists of a single method to identify the user which takes a URL and a redirect schema as input.
* Once the authorization is completed and the URL calls the redirect schema, the method should return the redirect URL.
*/
export interface AuthorizationContext {
authorize: (url: string, redirectSchema: string) => Promise<string>;
}
The authorize function is called with the URL to be opened and the schema to be used to redirect the user back to the application. The function should return a promise that resolves with the URL that the user has been redirected to. The suggested library to manage authorizations is io-react-native-login-utils, an example is shown below:
import { type AuthorizationContext } from "@pagopa/io-react-native-wallet";
import { openAuthenticationSession } from "@pagopa/io-react-native-login-utils";
const authorizationContext: AuthorizationContext = {
authorize: openAuthenticationSession,
};
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:
/**
* Interface for the integrity context which provides the necessary functions to interact with the integrity service.
* The functions are platform specific and must be implemented in the platform specific code.
* getHardwareKeyTag: returns the hardware key tag in a url safe format (e.g. base64url).
* getAttestation: requests the attestation from the integrity service.
* getHardwareSignatureWithAuthData: signs the clientData and returns the signature with the authenticator data.
*/
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.
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
- Issuance
- Presentation (TODO)
- Status
An example app is provided in example folder which demostrates how to implemente these flows. To run it, follow the instructions in the README.
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:
- @pagopa/io-react-native-crypto - Used to manage cryptographic keys and signatures
- @pagopa/io-react-native-integrity - Used to manage and verify the integrity of the device
- @pagopa/io-react-native-login-utils - Used to manage strong authentication flows securely
- @pagopa/io-react-native-secure-storage - Used to store data securely on the device
graph TD;
ioa[io-app]
iornw[io-react-native-wallet]
iornc[io-react-native-crypto]
iorni[io-react-native-integrity]
iornlu[io-react-native-login-utils]
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