Skip to content

Commit b3610d9

Browse files
fix: change hardcoded gateway id prefix to recipient id
1 parent bd084fd commit b3610d9

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

src/index.ts

+8-8
Original file line numberDiff line numberDiff line change
@@ -32,11 +32,11 @@ export default class GooglePaymentToken {
3232

3333
private __rootSigningKeys: GoogleRootSigningKeys[];
3434
private __privateKey: ECKey;
35-
private __gatewayId: string;
35+
private __recipientId: string;
3636

3737
constructor(
3838
rootSigningKeys: GoogleRootSigningKeys[],
39-
gatewayId: string,
39+
recipientId: string,
4040
privateKeyRaw: string
4141
) {
4242
const now = Date.now();
@@ -55,7 +55,7 @@ export default class GooglePaymentToken {
5555

5656
this.__rootSigningKeys = validKeys;
5757
this.__privateKey = new ECKey(privateKeyRaw, "pem");
58-
this.__gatewayId = gatewayId;
58+
this.__recipientId = recipientId;
5959
}
6060

6161
decrypt(payload: GooglePayPayload): DecryptedData {
@@ -150,15 +150,15 @@ export default class GooglePaymentToken {
150150
signedKeyLength.writeUint32LE(singedData.length);
151151

152152
if (useRecepientId) {
153-
const gatewayId = `gateway:${this.__gatewayId}`;
154-
const gatewayIdLength = Buffer.alloc(4);
155-
gatewayIdLength.writeUint32LE(gatewayId.length);
153+
const recipientId = this.__recipientId;
154+
const recipientIdLength = Buffer.alloc(4);
155+
recipientIdLength.writeUint32LE(recipientId.length);
156156

157157
return Buffer.concat([
158158
senderLength,
159159
Buffer.from(GooglePaymentToken.SENDER_ID, "utf8"),
160-
gatewayIdLength,
161-
Buffer.from(gatewayId, "utf8"),
160+
recipientIdLength,
161+
Buffer.from(recipientId, "utf8"),
162162
protocolLength,
163163
Buffer.from(GooglePaymentToken.PROTOCOL_VERSION, "utf8"),
164164
signedKeyLength,

0 commit comments

Comments
 (0)