@futpib/parser 1.0.0 → 1.0.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (171) hide show
  1. package/build/apk.d.ts +29 -3
  2. package/build/apkParser.d.ts +15 -2
  3. package/build/apkParser.js +70 -41
  4. package/build/apkParser.test.js +2 -2
  5. package/build/apkUnparser.d.ts +4 -0
  6. package/build/apkUnparser.js +90 -0
  7. package/build/apkUnparser.test.d.ts +1 -0
  8. package/build/apkUnparser.test.js +26 -0
  9. package/build/arbitraryFileSystemEntry.js +1 -1
  10. package/build/arbitraryZip.d.ts +1 -1
  11. package/build/arbitraryZip.js +13 -19
  12. package/build/arbitraryZipPermissions.d.ts +1 -8
  13. package/build/arbitraryZipPermissions.js +1 -16
  14. package/build/arbitraryZipStream.d.ts +1 -1
  15. package/build/arbitraryZipStream.js +3 -3
  16. package/build/arrayParser.d.ts +1 -1
  17. package/build/arrayParser.js +2 -2
  18. package/build/arrayParser.test.js +2 -2
  19. package/build/arrayUnparser.d.ts +2 -0
  20. package/build/arrayUnparser.js +8 -0
  21. package/build/bsonParser.test.js +2 -2
  22. package/build/customInvariant.d.ts +4 -0
  23. package/build/customInvariant.js +11 -0
  24. package/build/debugLogParser.d.ts +1 -1
  25. package/build/debugLogParser.js +1 -1
  26. package/build/elementParser.d.ts +2 -2
  27. package/build/elementParser.js +1 -1
  28. package/build/endOfInputParser.d.ts +2 -2
  29. package/build/exactElementParser.d.ts +1 -1
  30. package/build/exactSequenceParser.js +1 -1
  31. package/build/index.d.ts +5 -2
  32. package/build/index.js +3 -0
  33. package/build/inputReader.d.ts +3 -3
  34. package/build/inputReader.js +6 -6
  35. package/build/inputReader.test.js +7 -7
  36. package/build/javaKeyStore.d.ts +1 -0
  37. package/build/javaKeyStore.js +1 -0
  38. package/build/javaKeyStoreParser.d.ts +2 -0
  39. package/build/javaKeyStoreParser.js +67 -0
  40. package/build/javaKeyStoreParser.test.d.ts +1 -0
  41. package/build/javaKeyStoreParser.test.js +16 -0
  42. package/build/javaKeystoreParser.d.ts +2 -0
  43. package/build/javaKeystoreParser.js +7 -0
  44. package/build/jsonParser.js +3 -2
  45. package/build/jsonParser.test.js +2 -2
  46. package/build/listParser.d.ts +1 -1
  47. package/build/listParser.js +5 -5
  48. package/build/negativeLookahead.d.ts +1 -1
  49. package/build/negativeLookahead.js +16 -18
  50. package/build/negativeLookaheadParser.d.ts +2 -0
  51. package/build/negativeLookaheadParser.js +18 -0
  52. package/build/optionalParser.d.ts +1 -1
  53. package/build/optionalParser.js +2 -2
  54. package/build/parser.d.ts +3 -3
  55. package/build/parser.js +3 -3
  56. package/build/parser.test.js +16 -16
  57. package/build/parserAccessorParser.d.ts +1 -1
  58. package/build/parserConsumedSequenceParser.d.ts +2 -0
  59. package/build/parserConsumedSequenceParser.js +17 -0
  60. package/build/parserContext.d.ts +6 -6
  61. package/build/parserContext.js +15 -14
  62. package/build/parserContext.test.js +7 -7
  63. package/build/parserCreatorCompose.d.ts +3 -3
  64. package/build/parserCreatorCompose.js +2 -2
  65. package/build/parserImplementationInvariant.d.ts +1 -1
  66. package/build/parserImplementationInvariant.js +2 -2
  67. package/build/parserInputCompanion.d.ts +20 -0
  68. package/build/parserInputCompanion.js +30 -0
  69. package/build/parserInvariant.d.ts +1 -1
  70. package/build/parserInvariant.js +1 -1
  71. package/build/quantifierParser.d.ts +2 -0
  72. package/build/quantifierParser.js +17 -0
  73. package/build/sequenceBuffer.d.ts +3 -3
  74. package/build/sequenceBuffer.js +6 -6
  75. package/build/sequenceBuffer.test.js +2 -2
  76. package/build/sequenceUnparser.d.ts +2 -0
  77. package/build/sequenceUnparser.js +6 -0
  78. package/build/sliceBoundedParser.d.ts +1 -1
  79. package/build/sliceBoundedParser.js +1 -1
  80. package/build/sliceBoundedParser.test.js +2 -2
  81. package/build/terminatedArrayParser.d.ts +1 -1
  82. package/build/terminatedArrayParser.js +3 -3
  83. package/build/uint8Array.d.ts +1 -0
  84. package/build/uint8Array.js +7 -0
  85. package/build/unparser.d.ts +8 -0
  86. package/build/unparser.js +104 -0
  87. package/build/unparser.test.d.ts +1 -0
  88. package/build/unparser.test.js +150 -0
  89. package/build/unparserContext.d.ts +31 -0
  90. package/build/unparserContext.js +74 -0
  91. package/build/unparserError.d.ts +9 -0
  92. package/build/unparserError.js +9 -0
  93. package/build/unparserImplementationInvariant.d.ts +2 -0
  94. package/build/unparserImplementationInvariant.js +5 -0
  95. package/build/unparserInputCompanion.d.ts +15 -0
  96. package/build/unparserInputCompanion.js +13 -0
  97. package/build/unparserOutputCompanion.d.ts +15 -0
  98. package/build/unparserOutputCompanion.js +13 -0
  99. package/build/zip.d.ts +9 -17
  100. package/build/zipParser.d.ts +13 -10
  101. package/build/zipParser.js +48 -60
  102. package/build/zipParser.test.js +2 -7
  103. package/build/zipUnparser.d.ts +5 -0
  104. package/build/zipUnparser.js +171 -0
  105. package/build/zipUnparser.test.d.ts +1 -0
  106. package/build/zipUnparser.test.js +80 -0
  107. package/package.json +4 -2
  108. package/src/apk.ts +35 -3
  109. package/src/apkParser.test.ts +2 -2
  110. package/src/apkParser.test.ts.md +114 -111
  111. package/src/apkParser.test.ts.snap +0 -0
  112. package/src/apkParser.ts +150 -85
  113. package/src/apkUnparser.test.ts +37 -0
  114. package/src/apkUnparser.ts +120 -0
  115. package/src/arbitraryFileSystemEntry.ts +2 -4
  116. package/src/arbitraryZip.ts +20 -27
  117. package/src/arbitraryZipPermissions.ts +0 -25
  118. package/src/arbitraryZipStream.ts +4 -4
  119. package/src/arrayParser.test.ts +3 -3
  120. package/src/arrayParser.ts +3 -2
  121. package/src/arrayUnparser.ts +13 -0
  122. package/src/bsonParser.test.ts +2 -2
  123. package/src/bsonParser.ts +3 -3
  124. package/src/{parserInvariant.ts → customInvariant.ts} +1 -1
  125. package/src/debugLogParser.ts +1 -1
  126. package/src/elementParser.ts +3 -3
  127. package/src/endOfInputParser.ts +4 -4
  128. package/src/exactElementParser.ts +1 -1
  129. package/src/exactSequenceParser.ts +2 -2
  130. package/src/index.ts +15 -2
  131. package/src/inputReader.test.ts +7 -7
  132. package/src/inputReader.ts +5 -5
  133. package/src/javaKeyStore.ts +0 -0
  134. package/src/javaKeyStoreParser.test.ts +23 -0
  135. package/src/javaKeyStoreParser.test.ts.md +103 -0
  136. package/src/javaKeyStoreParser.test.ts.snap +0 -0
  137. package/src/javaKeyStoreParser.ts +136 -0
  138. package/src/jsonParser.test.ts +2 -2
  139. package/src/jsonParser.ts +13 -12
  140. package/src/listParser.ts +6 -6
  141. package/src/negativeLookaheadParser.ts +24 -0
  142. package/src/optionalParser.ts +3 -3
  143. package/src/parser.test.ts +19 -17
  144. package/src/parser.ts +7 -7
  145. package/src/parserAccessorParser.ts +1 -1
  146. package/src/parserConsumedSequenceParser.ts +20 -0
  147. package/src/parserContext.test.ts +7 -7
  148. package/src/parserContext.ts +18 -14
  149. package/src/parserCreatorCompose.ts +6 -6
  150. package/src/parserImplementationInvariant.ts +2 -2
  151. package/src/{inputCompanion.ts → parserInputCompanion.ts} +10 -6
  152. package/src/quantifierParser.ts +25 -0
  153. package/src/sequenceBuffer.test.ts +2 -2
  154. package/src/sequenceBuffer.ts +5 -5
  155. package/src/sequenceUnparser.ts +9 -0
  156. package/src/sliceBoundedParser.test.ts +2 -2
  157. package/src/sliceBoundedParser.ts +2 -2
  158. package/src/terminatedArrayParser.ts +3 -3
  159. package/src/uint8Array.ts +10 -0
  160. package/src/unparser.test.ts +221 -0
  161. package/src/unparser.ts +209 -0
  162. package/src/unparserContext.ts +127 -0
  163. package/src/unparserError.ts +12 -0
  164. package/src/unparserImplementationInvariant.ts +6 -0
  165. package/src/unparserOutputCompanion.ts +24 -0
  166. package/src/zip.ts +10 -22
  167. package/src/zipParser.test.ts +2 -8
  168. package/src/zipParser.ts +147 -129
  169. package/src/zipUnparser.test.ts +119 -0
  170. package/src/zipUnparser.ts +239 -0
  171. package/src/negativeLookahead.ts +0 -26
@@ -12,176 +12,179 @@ Generated by [AVA](https://avajs.dev).
12
12
  comment: '',
13
13
  entries: [
14
14
  {
15
+ attributes: {
16
+ directory: false,
17
+ },
15
18
  comment: '',
16
19
  compression: 'deflate',
17
20
  content: Uint8Array [
18
21
  38
19
22
  ],
20
23
  date: Date 1981-01-01 01:01:02 UTC {},
24
+ hostSystem: 'unix',
21
25
  path: 'META-INF/com/android/build/gradle/app-metadata.properties',
22
- permissions: {
23
- type: 'unix',
24
- unixPermissions: 420,
25
- },
26
26
  type: 'file',
27
27
  },
28
28
  {
29
+ attributes: {
30
+ directory: false,
31
+ },
29
32
  comment: '',
30
33
  compression: 'deflate',
31
34
  content: Uint8Array [
32
35
  04
33
36
  ],
34
37
  date: Date 1981-01-01 01:01:02 UTC {},
38
+ hostSystem: 'unix',
35
39
  path: 'classes.dex',
36
- permissions: {
37
- type: 'unix',
38
- unixPermissions: 420,
39
- },
40
40
  type: 'file',
41
41
  },
42
42
  {
43
+ attributes: {
44
+ directory: false,
45
+ },
43
46
  comment: '',
44
47
  compression: 'deflate',
45
48
  content: Uint8Array [
46
49
  24
47
50
  ],
48
51
  date: Date 1981-01-01 01:01:02 UTC {},
52
+ hostSystem: 'dos',
49
53
  path: 'AndroidManifest.xml',
50
- permissions: {
51
- dosPermissions: 0,
52
- type: 'dos',
53
- },
54
54
  type: 'file',
55
55
  },
56
56
  {
57
+ attributes: {
58
+ directory: false,
59
+ },
57
60
  comment: '',
58
61
  compression: 'store',
59
62
  content: Uint8Array [
60
63
  28
61
64
  ],
62
65
  date: Date 1981-01-01 01:01:02 UTC {},
66
+ hostSystem: 'dos',
63
67
  path: 'resources.arsc',
64
- permissions: {
65
- dosPermissions: 0,
66
- type: 'dos',
67
- },
68
68
  type: 'file',
69
69
  },
70
70
  {
71
+ attributes: {
72
+ directory: false,
73
+ },
71
74
  comment: '',
72
75
  compression: 'deflate',
73
76
  content: Uint8Array [
74
77
  c2
75
78
  ],
76
79
  date: Date 1981-01-01 01:01:02 UTC {},
80
+ hostSystem: 'unix',
77
81
  path: 'META-INF/CERT.SF',
78
- permissions: {
79
- type: 'unix',
80
- unixPermissions: 420,
81
- },
82
82
  type: 'file',
83
83
  },
84
84
  {
85
+ attributes: {
86
+ directory: false,
87
+ },
85
88
  comment: '',
86
89
  compression: 'deflate',
87
90
  content: Uint8Array [
88
91
  87
89
92
  ],
90
93
  date: Date 1981-01-01 01:01:02 UTC {},
94
+ hostSystem: 'unix',
91
95
  path: 'META-INF/CERT.RSA',
92
- permissions: {
93
- type: 'unix',
94
- unixPermissions: 420,
95
- },
96
96
  type: 'file',
97
97
  },
98
98
  {
99
+ attributes: {
100
+ directory: false,
101
+ },
99
102
  comment: '',
100
103
  compression: 'deflate',
101
104
  content: Uint8Array [
102
105
  8b
103
106
  ],
104
107
  date: Date 1981-01-01 01:01:02 UTC {},
108
+ hostSystem: 'unix',
105
109
  path: 'META-INF/MANIFEST.MF',
106
- permissions: {
107
- type: 'unix',
108
- unixPermissions: 420,
109
- },
110
110
  type: 'file',
111
111
  },
112
112
  ],
113
113
  signingBlock: {
114
114
  pairs: [],
115
- signatureV2: [
116
- {
117
- publicKey: Uint8Array [
118
- 30820122 300d0609 2a864886 f70d0101 01050003 82010f00 3082010a 02820101
119
- 00d9e80b 234a3d22 9edb5b29 dc6304b4 af9cfebf ff1428ad dfdc39d8 98630c66
120
- 5fbf2761 3fa9e68a 481986b1 fbf2d261 e9601586 6d00cb32 da998310 bd6ed4f7
121
- 1eb43aad 8300b6a6 10c674fc a2e18424 49e43b30 958e7384 38da6185 8c1fa3ae
122
- 443062e7 0e08cc98 7ed316b0 d449691f f7ddb30a 5dc0a76e 63541180 24adb323
123
- 41865189 6f88092c 7e510d64 4a58b8e6 008a7e80 821fa071 a40bb6dc 03109c18
124
- d48b8304 d0e34576 9d21a329 71c349d3 ad4f44d1 2469e132 632f16ef 37e2c5d0
125
- fcfd1297 6f76b4b7 3be5a412 db8e9b84 877f05ab d6bb7406 e9ed1df6 94a8185f
126
- 2425dfda 330e9d83 7be2c34c 403ddb1b f0fbffdd b5e444aa 8cbbc76b 55ef718d
127
- e7020301 0001
128
- ],
129
- signatures: [
130
- {
131
- signature: Uint8Array [
132
- afe9f1db ef788d9c b374f659 00f6e1f2 d2fd3179 4614443a b00798ad d4808873
133
- cf91a1fc ffdd68c2 c4c035b4 22ec2c87 676626ab bb72ea1e cc9eed9e feeb7e4f
134
- b1ff0800 cabc5cd4 06a66f97 59d97d5c 0be5a4af df99e873 702c76c8 3f99c319
135
- f61870dc a47c2f4a be5f63f4 9935050a 1811a6c0 c97c3f84 a69f741d 510d6add
136
- 65e180a5 d7e9ec63 f04797a8 4f177cc3 ec240d43 776335de 77f57d90 e9e9c99b
137
- 0fb38afc 271b30e3 476ce4f0 5b6ca04c eace914c b4583031 f8038506 07a7c872
138
- ba8959d6 faea789a a8d96ded 0ea8aed4 29022190 543817c1 619fbf18 597106dd
139
- 7f97b127 9504a7a6 1ac6d1af 4d4ff633 cff1efa9 46d88682 b4201810 1ec50c53
140
- ],
141
- signatureAlgorithmId: 259,
142
- },
143
- ],
144
- signedData: {
145
- additionalAttributes: [],
146
- certificates: [
147
- Uint8Array [
148
- 308202e4 308201cc 02010130 0d06092a 864886f7 0d010105 05003037 31163014
149
- 06035504 030c0d41 6e64726f 69642044 65627567 3110300e 06035504 0a0c0741
150
- 6e64726f 6964310b 30090603 55040613 02555330 20170d32 31303532 35313033
151
- 3934395a 180f3230 35313035 31383130 33393439 5a303731 16301406 03550403
152
- 0c0d416e 64726f69 64204465 62756731 10300e06 0355040a 0c07416e 64726f69
153
- 64310b30 09060355 04061302 55533082 0122300d 06092a86 4886f70d 01010105
154
- 00038201 0f003082 010a0282 010100d9 e80b234a 3d229edb 5b29dc63 04b4af9c
155
- febfff14 28addfdc 39d89863 0c665fbf 27613fa9 e68a4819 86b1fbf2 d261e960
156
- 15866d00 cb32da99 8310bd6e d4f71eb4 3aad8300 b6a610c6 74fca2e1 842449e4
157
- 3b30958e 738438da 61858c1f a3ae4430 62e70e08 cc987ed3 16b0d449 691ff7dd
158
- b30a5dc0 a76e6354 118024ad b3234186 51896f88 092c7e51 0d644a58 b8e6008a
159
- 7e80821f a071a40b b6dc0310 9c18d48b 8304d0e3 45769d21 a32971c3 49d3ad4f
160
- 44d12469 e132632f 16ef37e2 c5d0fcfd 12976f76 b4b73be5 a412db8e 9b84877f
161
- 05abd6bb 7406e9ed 1df694a8 185f2425 dfda330e 9d837be2 c34c403d db1bf0fb
162
- ffddb5e4 44aa8cbb c76b55ef 718de702 03010001 300d0609 2a864886 f70d0101
163
- 05050003 82010100 a46b928b e1ebab3e 96f01510 c4c08aa7 1fc7e430 9e61057d
164
- a2992615 5abc1388 256617fb 6ece2fb6 9855c225 de33b828 a78b5796 a8e66f20
165
- 62b22568 171d4501 61f5de61 2eb3d75e 3367127d a6feb30d 3764cd44 c9dc2e0c
166
- 19b07260 154ff2aa 78c0d7f6 87e3417f 8694ecfd cdb448d9 cc4959f3 3face106
167
- 258b7c12 e863e397 79a6d6fa f9b08d77 061beb87 7c2e36ce 7e69e564 66d7685b
168
- 8460462e b8f0106c bf03eb18 dfcfef11 b7f9f7b5 b8ae6c0f b8cdbc0e ce7c1c68
169
- 17d6c538 7acaf796 2189c4ec fe569d1c 3c0d12bd a7630669 095e2727 4c549e76
170
- ed05d76f eaf75631 d93d80b3 14f03e53 1b1a3493 ccf756cf 023794f1 40bf9005
171
- c5ec180d 9dcbf468
172
- ],
115
+ signatureV2: {
116
+ signers: [
117
+ {
118
+ publicKey: Uint8Array [
119
+ 30820122 300d0609 2a864886 f70d0101 01050003 82010f00 3082010a 02820101
120
+ 00d9e80b 234a3d22 9edb5b29 dc6304b4 af9cfebf ff1428ad dfdc39d8 98630c66
121
+ 5fbf2761 3fa9e68a 481986b1 fbf2d261 e9601586 6d00cb32 da998310 bd6ed4f7
122
+ 1eb43aad 8300b6a6 10c674fc a2e18424 49e43b30 958e7384 38da6185 8c1fa3ae
123
+ 443062e7 0e08cc98 7ed316b0 d449691f f7ddb30a 5dc0a76e 63541180 24adb323
124
+ 41865189 6f88092c 7e510d64 4a58b8e6 008a7e80 821fa071 a40bb6dc 03109c18
125
+ d48b8304 d0e34576 9d21a329 71c349d3 ad4f44d1 2469e132 632f16ef 37e2c5d0
126
+ fcfd1297 6f76b4b7 3be5a412 db8e9b84 877f05ab d6bb7406 e9ed1df6 94a8185f
127
+ 2425dfda 330e9d83 7be2c34c 403ddb1b f0fbffdd b5e444aa 8cbbc76b 55ef718d
128
+ e7020301 0001
173
129
  ],
174
- digests: [
130
+ signatures: [
175
131
  {
176
- digest: Uint8Array [
177
- 52308ebb b8a0f50c e32daa36 41a7640d 09d07ab5 9bbdbe18 9605d4a7 1897b69e
132
+ signature: Uint8Array [
133
+ afe9f1db ef788d9c b374f659 00f6e1f2 d2fd3179 4614443a b00798ad d4808873
134
+ cf91a1fc ffdd68c2 c4c035b4 22ec2c87 676626ab bb72ea1e cc9eed9e feeb7e4f
135
+ b1ff0800 cabc5cd4 06a66f97 59d97d5c 0be5a4af df99e873 702c76c8 3f99c319
136
+ f61870dc a47c2f4a be5f63f4 9935050a 1811a6c0 c97c3f84 a69f741d 510d6add
137
+ 65e180a5 d7e9ec63 f04797a8 4f177cc3 ec240d43 776335de 77f57d90 e9e9c99b
138
+ 0fb38afc 271b30e3 476ce4f0 5b6ca04c eace914c b4583031 f8038506 07a7c872
139
+ ba8959d6 faea789a a8d96ded 0ea8aed4 29022190 543817c1 619fbf18 597106dd
140
+ 7f97b127 9504a7a6 1ac6d1af 4d4ff633 cff1efa9 46d88682 b4201810 1ec50c53
178
141
  ],
179
142
  signatureAlgorithmId: 259,
180
143
  },
181
144
  ],
145
+ signedData: {
146
+ additionalAttributes: [],
147
+ certificates: [
148
+ Uint8Array [
149
+ 308202e4 308201cc 02010130 0d06092a 864886f7 0d010105 05003037 31163014
150
+ 06035504 030c0d41 6e64726f 69642044 65627567 3110300e 06035504 0a0c0741
151
+ 6e64726f 6964310b 30090603 55040613 02555330 20170d32 31303532 35313033
152
+ 3934395a 180f3230 35313035 31383130 33393439 5a303731 16301406 03550403
153
+ 0c0d416e 64726f69 64204465 62756731 10300e06 0355040a 0c07416e 64726f69
154
+ 64310b30 09060355 04061302 55533082 0122300d 06092a86 4886f70d 01010105
155
+ 00038201 0f003082 010a0282 010100d9 e80b234a 3d229edb 5b29dc63 04b4af9c
156
+ febfff14 28addfdc 39d89863 0c665fbf 27613fa9 e68a4819 86b1fbf2 d261e960
157
+ 15866d00 cb32da99 8310bd6e d4f71eb4 3aad8300 b6a610c6 74fca2e1 842449e4
158
+ 3b30958e 738438da 61858c1f a3ae4430 62e70e08 cc987ed3 16b0d449 691ff7dd
159
+ b30a5dc0 a76e6354 118024ad b3234186 51896f88 092c7e51 0d644a58 b8e6008a
160
+ 7e80821f a071a40b b6dc0310 9c18d48b 8304d0e3 45769d21 a32971c3 49d3ad4f
161
+ 44d12469 e132632f 16ef37e2 c5d0fcfd 12976f76 b4b73be5 a412db8e 9b84877f
162
+ 05abd6bb 7406e9ed 1df694a8 185f2425 dfda330e 9d837be2 c34c403d db1bf0fb
163
+ ffddb5e4 44aa8cbb c76b55ef 718de702 03010001 300d0609 2a864886 f70d0101
164
+ 05050003 82010100 a46b928b e1ebab3e 96f01510 c4c08aa7 1fc7e430 9e61057d
165
+ a2992615 5abc1388 256617fb 6ece2fb6 9855c225 de33b828 a78b5796 a8e66f20
166
+ 62b22568 171d4501 61f5de61 2eb3d75e 3367127d a6feb30d 3764cd44 c9dc2e0c
167
+ 19b07260 154ff2aa 78c0d7f6 87e3417f 8694ecfd cdb448d9 cc4959f3 3face106
168
+ 258b7c12 e863e397 79a6d6fa f9b08d77 061beb87 7c2e36ce 7e69e564 66d7685b
169
+ 8460462e b8f0106c bf03eb18 dfcfef11 b7f9f7b5 b8ae6c0f b8cdbc0e ce7c1c68
170
+ 17d6c538 7acaf796 2189c4ec fe569d1c 3c0d12bd a7630669 095e2727 4c549e76
171
+ ed05d76f eaf75631 d93d80b3 14f03e53 1b1a3493 ccf756cf 023794f1 40bf9005
172
+ c5ec180d 9dcbf468
173
+ ],
174
+ ],
175
+ digests: [
176
+ {
177
+ digest: Uint8Array [
178
+ 52308ebb b8a0f50c e32daa36 41a7640d 09d07ab5 9bbdbe18 9605d4a7 1897b69e
179
+ ],
180
+ signatureAlgorithmId: 259,
181
+ },
182
+ ],
183
+ zeroPaddingLength: 4,
184
+ },
182
185
  },
183
- },
184
- ],
186
+ ],
187
+ },
185
188
  zeroPaddingLength: 2650,
186
189
  },
187
190
  }
@@ -194,73 +197,73 @@ Generated by [AVA](https://avajs.dev).
194
197
  comment: '',
195
198
  entries: [
196
199
  {
200
+ attributes: {
201
+ directory: false,
202
+ },
197
203
  comment: '',
198
204
  compression: 'deflate',
199
205
  content: Uint8Array [
200
206
  38
201
207
  ],
202
208
  date: Date 1981-01-01 01:01:02 UTC {},
209
+ hostSystem: 'unix',
203
210
  path: 'META-INF/com/android/build/gradle/app-metadata.properties',
204
- permissions: {
205
- type: 'unix',
206
- unixPermissions: 420,
207
- },
208
211
  type: 'file',
209
212
  },
210
213
  {
214
+ attributes: {
215
+ directory: false,
216
+ },
211
217
  comment: '',
212
218
  compression: 'deflate',
213
219
  content: Uint8Array [
214
220
  78
215
221
  ],
216
222
  date: Date 1981-01-01 01:01:02 UTC {},
223
+ hostSystem: 'unix',
217
224
  path: 'META-INF/version-control-info.textproto',
218
- permissions: {
219
- type: 'unix',
220
- unixPermissions: 420,
221
- },
222
225
  type: 'file',
223
226
  },
224
227
  {
228
+ attributes: {
229
+ directory: false,
230
+ },
225
231
  comment: '',
226
232
  compression: 'deflate',
227
233
  content: Uint8Array [
228
234
  88
229
235
  ],
230
236
  date: Date 1981-01-01 01:01:02 UTC {},
237
+ hostSystem: 'unix',
231
238
  path: 'classes.dex',
232
- permissions: {
233
- type: 'unix',
234
- unixPermissions: 420,
235
- },
236
239
  type: 'file',
237
240
  },
238
241
  {
242
+ attributes: {
243
+ directory: false,
244
+ },
239
245
  comment: '',
240
246
  compression: 'deflate',
241
247
  content: Uint8Array [
242
248
  f0
243
249
  ],
244
250
  date: Date 1981-01-01 01:01:02 UTC {},
251
+ hostSystem: 'dos',
245
252
  path: 'AndroidManifest.xml',
246
- permissions: {
247
- dosPermissions: 0,
248
- type: 'dos',
249
- },
250
253
  type: 'file',
251
254
  },
252
255
  {
256
+ attributes: {
257
+ directory: false,
258
+ },
253
259
  comment: '',
254
260
  compression: 'store',
255
261
  content: Uint8Array [
256
262
  28
257
263
  ],
258
264
  date: Date 1981-01-01 01:01:02 UTC {},
265
+ hostSystem: 'dos',
259
266
  path: 'resources.arsc',
260
- permissions: {
261
- dosPermissions: 0,
262
- type: 'dos',
263
- },
264
267
  type: 'file',
265
268
  },
266
269
  ],
Binary file