@@ -32,11 +32,11 @@ export default class GooglePaymentToken {
32
32
33
33
private __rootSigningKeys : GoogleRootSigningKeys [ ] ;
34
34
private __privateKey : ECKey ;
35
- private __gatewayId : string ;
35
+ private __recipientId : string ;
36
36
37
37
constructor (
38
38
rootSigningKeys : GoogleRootSigningKeys [ ] ,
39
- gatewayId : string ,
39
+ recipientId : string ,
40
40
privateKeyRaw : string
41
41
) {
42
42
const now = Date . now ( ) ;
@@ -55,7 +55,7 @@ export default class GooglePaymentToken {
55
55
56
56
this . __rootSigningKeys = validKeys ;
57
57
this . __privateKey = new ECKey ( privateKeyRaw , "pem" ) ;
58
- this . __gatewayId = gatewayId ;
58
+ this . __recipientId = recipientId ;
59
59
}
60
60
61
61
decrypt ( payload : GooglePayPayload ) : DecryptedData {
@@ -150,15 +150,15 @@ export default class GooglePaymentToken {
150
150
signedKeyLength . writeUint32LE ( singedData . length ) ;
151
151
152
152
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 ) ;
156
156
157
157
return Buffer . concat ( [
158
158
senderLength ,
159
159
Buffer . from ( GooglePaymentToken . SENDER_ID , "utf8" ) ,
160
- gatewayIdLength ,
161
- Buffer . from ( gatewayId , "utf8" ) ,
160
+ recipientIdLength ,
161
+ Buffer . from ( recipientId , "utf8" ) ,
162
162
protocolLength ,
163
163
Buffer . from ( GooglePaymentToken . PROTOCOL_VERSION , "utf8" ) ,
164
164
signedKeyLength ,
0 commit comments