@rnw-community/react-native-payments
Version:
Accept Payments with Apple Pay and Android Pay using the Payment Request API.
15 lines (11 loc) • 496 B
text/typescript
import { emptyAndroidSignedKey } from './android-signed-key';
import type { AndroidSignedKey } from './android-signed-key';
// https://developers.google.com/pay/api/android/guides/resources/payment-data-cryptography#intermediate-signing-key
export interface AndroidIntermediateSigningKey {
signatures: string;
signedKey: AndroidSignedKey;
}
export const emptyAndroidIntermediateSigningKey: AndroidIntermediateSigningKey = {
signatures: '',
signedKey: emptyAndroidSignedKey,
};