bdy 1.23.6-dev → 1.23.7-dev

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 (205) hide show
  1. package/distTs/package.json +10 -2
  2. package/distTs/src/agent/linux.js +53 -3
  3. package/distTs/src/agent/manager.js +3 -6
  4. package/distTs/src/agent/osx.js +51 -3
  5. package/distTs/src/agent/system.js +400 -21
  6. package/distTs/src/agent/windows.js +4 -7
  7. package/distTs/src/command/agent/debug.js +2 -2
  8. package/distTs/src/command/agent/install.js +37 -10
  9. package/distTs/src/command/agent/restart.js +2 -2
  10. package/distTs/src/command/agent/run.js +3 -0
  11. package/distTs/src/command/agent/start.js +2 -2
  12. package/distTs/src/command/agent/status.js +19 -0
  13. package/distTs/src/command/agent/stop.js +2 -2
  14. package/distTs/src/command/agent/uninstall.js +5 -8
  15. package/distTs/src/command/agent/update.js +2 -2
  16. package/distTs/src/command/artifact/publish.js +3 -1
  17. package/distTs/src/command/version.js +13 -5
  18. package/distTs/src/logger.js +40 -4
  19. package/distTs/src/texts.js +35 -19
  20. package/distTs/src/utils.js +98 -3
  21. package/node_modules/asn1/Jenkinsfile +65 -0
  22. package/node_modules/asn1/LICENSE +19 -0
  23. package/node_modules/asn1/README.md +50 -0
  24. package/node_modules/asn1/lib/ber/errors.js +13 -0
  25. package/node_modules/asn1/lib/ber/index.js +27 -0
  26. package/node_modules/asn1/lib/ber/reader.js +262 -0
  27. package/node_modules/asn1/lib/ber/types.js +36 -0
  28. package/node_modules/asn1/lib/ber/writer.js +317 -0
  29. package/node_modules/asn1/lib/index.js +20 -0
  30. package/node_modules/asn1/package.json +31 -0
  31. package/node_modules/bcrypt-pbkdf/CONTRIBUTING.md +13 -0
  32. package/node_modules/bcrypt-pbkdf/LICENSE +66 -0
  33. package/node_modules/bcrypt-pbkdf/README.md +45 -0
  34. package/node_modules/bcrypt-pbkdf/index.js +556 -0
  35. package/node_modules/bcrypt-pbkdf/package.json +15 -0
  36. package/node_modules/safer-buffer/LICENSE +21 -0
  37. package/node_modules/safer-buffer/Porting-Buffer.md +268 -0
  38. package/node_modules/safer-buffer/Readme.md +156 -0
  39. package/node_modules/safer-buffer/dangerous.js +58 -0
  40. package/node_modules/safer-buffer/package.json +34 -0
  41. package/node_modules/safer-buffer/safer.js +77 -0
  42. package/node_modules/safer-buffer/tests.js +406 -0
  43. package/node_modules/ssh2/.eslintignore +4 -0
  44. package/node_modules/ssh2/.eslintrc.js +5 -0
  45. package/node_modules/ssh2/.github/workflows/ci.yml +110 -0
  46. package/node_modules/ssh2/.github/workflows/lint.yml +27 -0
  47. package/node_modules/ssh2/LICENSE +19 -0
  48. package/node_modules/ssh2/README.md +1529 -0
  49. package/node_modules/ssh2/SFTP.md +413 -0
  50. package/node_modules/ssh2/examples/server-chat.js +238 -0
  51. package/node_modules/ssh2/examples/sftp-server-download-only.js +134 -0
  52. package/node_modules/ssh2/install.js +27 -0
  53. package/node_modules/ssh2/lib/Channel.js +295 -0
  54. package/node_modules/ssh2/lib/agent.js +1123 -0
  55. package/node_modules/ssh2/lib/client.js +2176 -0
  56. package/node_modules/ssh2/lib/http-agents.js +84 -0
  57. package/node_modules/ssh2/lib/index.js +44 -0
  58. package/node_modules/ssh2/lib/keygen.js +582 -0
  59. package/node_modules/ssh2/lib/protocol/Protocol.js +2136 -0
  60. package/node_modules/ssh2/lib/protocol/SFTP.js +4052 -0
  61. package/node_modules/ssh2/lib/protocol/constants.js +356 -0
  62. package/node_modules/ssh2/lib/protocol/crypto/binding.gyp +23 -0
  63. package/node_modules/ssh2/lib/protocol/crypto/poly1305.js +43 -0
  64. package/node_modules/ssh2/lib/protocol/crypto/src/binding.cc +2300 -0
  65. package/node_modules/ssh2/lib/protocol/crypto.js +1602 -0
  66. package/node_modules/ssh2/lib/protocol/handlers.js +16 -0
  67. package/node_modules/ssh2/lib/protocol/handlers.misc.js +1285 -0
  68. package/node_modules/ssh2/lib/protocol/kex.js +1908 -0
  69. package/node_modules/ssh2/lib/protocol/keyParser.js +1484 -0
  70. package/node_modules/ssh2/lib/protocol/node-fs-compat.js +115 -0
  71. package/node_modules/ssh2/lib/protocol/utils.js +356 -0
  72. package/node_modules/ssh2/lib/protocol/zlib.js +255 -0
  73. package/node_modules/ssh2/lib/server.js +1380 -0
  74. package/node_modules/ssh2/lib/utils.js +336 -0
  75. package/node_modules/ssh2/package.json +49 -0
  76. package/node_modules/ssh2/test/common.js +316 -0
  77. package/node_modules/ssh2/test/fixtures/bad_rsa_private_key +26 -0
  78. package/node_modules/ssh2/test/fixtures/https_cert.pem +33 -0
  79. package/node_modules/ssh2/test/fixtures/https_key.pem +52 -0
  80. package/node_modules/ssh2/test/fixtures/id_dsa +12 -0
  81. package/node_modules/ssh2/test/fixtures/id_ecdsa +5 -0
  82. package/node_modules/ssh2/test/fixtures/id_rsa +15 -0
  83. package/node_modules/ssh2/test/fixtures/id_rsa.ppk +26 -0
  84. package/node_modules/ssh2/test/fixtures/id_rsa_enc +30 -0
  85. package/node_modules/ssh2/test/fixtures/keyParser/openssh_new_dsa +21 -0
  86. package/node_modules/ssh2/test/fixtures/keyParser/openssh_new_dsa.pub +1 -0
  87. package/node_modules/ssh2/test/fixtures/keyParser/openssh_new_dsa.pub.result +7 -0
  88. package/node_modules/ssh2/test/fixtures/keyParser/openssh_new_dsa.result +7 -0
  89. package/node_modules/ssh2/test/fixtures/keyParser/openssh_new_dsa_enc +22 -0
  90. package/node_modules/ssh2/test/fixtures/keyParser/openssh_new_dsa_enc.pub +1 -0
  91. package/node_modules/ssh2/test/fixtures/keyParser/openssh_new_dsa_enc.pub.result +7 -0
  92. package/node_modules/ssh2/test/fixtures/keyParser/openssh_new_dsa_enc.result +7 -0
  93. package/node_modules/ssh2/test/fixtures/keyParser/openssh_new_dsa_enc_gcm +23 -0
  94. package/node_modules/ssh2/test/fixtures/keyParser/openssh_new_dsa_enc_gcm.pub +1 -0
  95. package/node_modules/ssh2/test/fixtures/keyParser/openssh_new_dsa_enc_gcm.pub.result +7 -0
  96. package/node_modules/ssh2/test/fixtures/keyParser/openssh_new_dsa_enc_gcm.result +7 -0
  97. package/node_modules/ssh2/test/fixtures/keyParser/openssh_new_ecdsa +9 -0
  98. package/node_modules/ssh2/test/fixtures/keyParser/openssh_new_ecdsa.pub +1 -0
  99. package/node_modules/ssh2/test/fixtures/keyParser/openssh_new_ecdsa.pub.result +7 -0
  100. package/node_modules/ssh2/test/fixtures/keyParser/openssh_new_ecdsa.result +7 -0
  101. package/node_modules/ssh2/test/fixtures/keyParser/openssh_new_ecdsa_enc +10 -0
  102. package/node_modules/ssh2/test/fixtures/keyParser/openssh_new_ecdsa_enc.pub +1 -0
  103. package/node_modules/ssh2/test/fixtures/keyParser/openssh_new_ecdsa_enc.pub.result +8 -0
  104. package/node_modules/ssh2/test/fixtures/keyParser/openssh_new_ecdsa_enc.result +7 -0
  105. package/node_modules/ssh2/test/fixtures/keyParser/openssh_new_ecdsa_enc_gcm +10 -0
  106. package/node_modules/ssh2/test/fixtures/keyParser/openssh_new_ecdsa_enc_gcm.pub +1 -0
  107. package/node_modules/ssh2/test/fixtures/keyParser/openssh_new_ecdsa_enc_gcm.pub.result +8 -0
  108. package/node_modules/ssh2/test/fixtures/keyParser/openssh_new_ecdsa_enc_gcm.result +7 -0
  109. package/node_modules/ssh2/test/fixtures/keyParser/openssh_new_ed25519 +7 -0
  110. package/node_modules/ssh2/test/fixtures/keyParser/openssh_new_ed25519.pub +1 -0
  111. package/node_modules/ssh2/test/fixtures/keyParser/openssh_new_ed25519.pub.result +7 -0
  112. package/node_modules/ssh2/test/fixtures/keyParser/openssh_new_ed25519.result +7 -0
  113. package/node_modules/ssh2/test/fixtures/keyParser/openssh_new_rsa +27 -0
  114. package/node_modules/ssh2/test/fixtures/keyParser/openssh_new_rsa.pub +1 -0
  115. package/node_modules/ssh2/test/fixtures/keyParser/openssh_new_rsa.pub.result +7 -0
  116. package/node_modules/ssh2/test/fixtures/keyParser/openssh_new_rsa.result +7 -0
  117. package/node_modules/ssh2/test/fixtures/keyParser/openssh_new_rsa_enc +28 -0
  118. package/node_modules/ssh2/test/fixtures/keyParser/openssh_new_rsa_enc.pub +1 -0
  119. package/node_modules/ssh2/test/fixtures/keyParser/openssh_new_rsa_enc.pub.result +8 -0
  120. package/node_modules/ssh2/test/fixtures/keyParser/openssh_new_rsa_enc.result +7 -0
  121. package/node_modules/ssh2/test/fixtures/keyParser/openssh_new_rsa_enc_gcm +29 -0
  122. package/node_modules/ssh2/test/fixtures/keyParser/openssh_new_rsa_enc_gcm.pub +1 -0
  123. package/node_modules/ssh2/test/fixtures/keyParser/openssh_new_rsa_enc_gcm.pub.result +8 -0
  124. package/node_modules/ssh2/test/fixtures/keyParser/openssh_new_rsa_enc_gcm.result +7 -0
  125. package/node_modules/ssh2/test/fixtures/keyParser/openssh_old_dsa +12 -0
  126. package/node_modules/ssh2/test/fixtures/keyParser/openssh_old_dsa.pub +1 -0
  127. package/node_modules/ssh2/test/fixtures/keyParser/openssh_old_dsa.pub.result +7 -0
  128. package/node_modules/ssh2/test/fixtures/keyParser/openssh_old_dsa.result +7 -0
  129. package/node_modules/ssh2/test/fixtures/keyParser/openssh_old_dsa_enc +15 -0
  130. package/node_modules/ssh2/test/fixtures/keyParser/openssh_old_dsa_enc.pub +1 -0
  131. package/node_modules/ssh2/test/fixtures/keyParser/openssh_old_dsa_enc.pub.result +8 -0
  132. package/node_modules/ssh2/test/fixtures/keyParser/openssh_old_dsa_enc.result +7 -0
  133. package/node_modules/ssh2/test/fixtures/keyParser/openssh_old_ecdsa +5 -0
  134. package/node_modules/ssh2/test/fixtures/keyParser/openssh_old_ecdsa.pub +1 -0
  135. package/node_modules/ssh2/test/fixtures/keyParser/openssh_old_ecdsa.pub.result +7 -0
  136. package/node_modules/ssh2/test/fixtures/keyParser/openssh_old_ecdsa.result +7 -0
  137. package/node_modules/ssh2/test/fixtures/keyParser/openssh_old_ecdsa_enc +8 -0
  138. package/node_modules/ssh2/test/fixtures/keyParser/openssh_old_ecdsa_enc.pub +1 -0
  139. package/node_modules/ssh2/test/fixtures/keyParser/openssh_old_ecdsa_enc.pub.result +8 -0
  140. package/node_modules/ssh2/test/fixtures/keyParser/openssh_old_ecdsa_enc.result +7 -0
  141. package/node_modules/ssh2/test/fixtures/keyParser/openssh_old_rsa +27 -0
  142. package/node_modules/ssh2/test/fixtures/keyParser/openssh_old_rsa.pub +1 -0
  143. package/node_modules/ssh2/test/fixtures/keyParser/openssh_old_rsa.pub.result +7 -0
  144. package/node_modules/ssh2/test/fixtures/keyParser/openssh_old_rsa.result +7 -0
  145. package/node_modules/ssh2/test/fixtures/keyParser/openssh_old_rsa_enc +30 -0
  146. package/node_modules/ssh2/test/fixtures/keyParser/openssh_old_rsa_enc.pub +1 -0
  147. package/node_modules/ssh2/test/fixtures/keyParser/openssh_old_rsa_enc.pub.result +8 -0
  148. package/node_modules/ssh2/test/fixtures/keyParser/openssh_old_rsa_enc.result +7 -0
  149. package/node_modules/ssh2/test/fixtures/keyParser/openssh_old_rsa_enc_aes256 +54 -0
  150. package/node_modules/ssh2/test/fixtures/keyParser/openssh_old_rsa_enc_aes256.pub +1 -0
  151. package/node_modules/ssh2/test/fixtures/keyParser/openssh_old_rsa_enc_aes256.pub.result +6 -0
  152. package/node_modules/ssh2/test/fixtures/keyParser/openssh_old_rsa_enc_aes256.result +6 -0
  153. package/node_modules/ssh2/test/fixtures/keyParser/ppk_dsa_enc +17 -0
  154. package/node_modules/ssh2/test/fixtures/keyParser/ppk_dsa_enc.result +7 -0
  155. package/node_modules/ssh2/test/fixtures/keyParser/ppk_rsa +26 -0
  156. package/node_modules/ssh2/test/fixtures/keyParser/ppk_rsa.result +7 -0
  157. package/node_modules/ssh2/test/fixtures/keyParser/ppk_rsa_enc +18 -0
  158. package/node_modules/ssh2/test/fixtures/keyParser/ppk_rsa_enc.result +7 -0
  159. package/node_modules/ssh2/test/fixtures/keyParser/rfc4716_rsa.pub +9 -0
  160. package/node_modules/ssh2/test/fixtures/keyParser/rfc4716_rsa.pub.result +7 -0
  161. package/node_modules/ssh2/test/fixtures/keyParser/rfc4716_rsa2.pub +10 -0
  162. package/node_modules/ssh2/test/fixtures/keyParser/rfc4716_rsa2.pub.result +7 -0
  163. package/node_modules/ssh2/test/fixtures/keyParser/rfc4716_rsa3.pub +11 -0
  164. package/node_modules/ssh2/test/fixtures/keyParser/rfc4716_rsa3.pub.result +7 -0
  165. package/node_modules/ssh2/test/fixtures/keyParser/rfc4716_rsa4.pub +11 -0
  166. package/node_modules/ssh2/test/fixtures/keyParser/rfc4716_rsa4.pub.result +7 -0
  167. package/node_modules/ssh2/test/fixtures/keyParser/rfc4716_rsa5.pub +8 -0
  168. package/node_modules/ssh2/test/fixtures/keyParser/rfc4716_rsa5.pub.result +7 -0
  169. package/node_modules/ssh2/test/fixtures/keyParser/rfc4716_rsa6.pub +13 -0
  170. package/node_modules/ssh2/test/fixtures/keyParser/rfc4716_rsa6.pub.result +7 -0
  171. package/node_modules/ssh2/test/fixtures/openssh_new_rsa +27 -0
  172. package/node_modules/ssh2/test/fixtures/ssh_host_dsa_key +12 -0
  173. package/node_modules/ssh2/test/fixtures/ssh_host_ecdsa_key +5 -0
  174. package/node_modules/ssh2/test/fixtures/ssh_host_rsa_key +15 -0
  175. package/node_modules/ssh2/test/test-exec.js +578 -0
  176. package/node_modules/ssh2/test/test-integration-openssh.js +486 -0
  177. package/node_modules/ssh2/test/test-keygen.js +60 -0
  178. package/node_modules/ssh2/test/test-misc-client-server.js +1460 -0
  179. package/node_modules/ssh2/test/test-openssh.js +261 -0
  180. package/node_modules/ssh2/test/test-protocol-crypto.js +631 -0
  181. package/node_modules/ssh2/test/test-protocol-keyparser.js +177 -0
  182. package/node_modules/ssh2/test/test-server-hostkeys.js +138 -0
  183. package/node_modules/ssh2/test/test-sftp.js +842 -0
  184. package/node_modules/ssh2/test/test-shell.js +109 -0
  185. package/node_modules/ssh2/test/test-userauth-agent-openssh.js +110 -0
  186. package/node_modules/ssh2/test/test-userauth-agent.js +171 -0
  187. package/node_modules/ssh2/test/test-userauth.js +611 -0
  188. package/node_modules/ssh2/test/test-worker-imports.js +25 -0
  189. package/node_modules/ssh2/test/test.js +20 -0
  190. package/node_modules/ssh2/util/build_pagent.bat +2 -0
  191. package/node_modules/ssh2/util/pagent.c +88 -0
  192. package/node_modules/ssh2/util/pagent.exe +0 -0
  193. package/node_modules/tweetnacl/.npmignore +4 -0
  194. package/node_modules/tweetnacl/AUTHORS.md +28 -0
  195. package/node_modules/tweetnacl/CHANGELOG.md +221 -0
  196. package/node_modules/tweetnacl/LICENSE +24 -0
  197. package/node_modules/tweetnacl/PULL_REQUEST_TEMPLATE.md +20 -0
  198. package/node_modules/tweetnacl/README.md +459 -0
  199. package/node_modules/tweetnacl/nacl-fast.js +2388 -0
  200. package/node_modules/tweetnacl/nacl-fast.min.js +2 -0
  201. package/node_modules/tweetnacl/nacl.d.ts +98 -0
  202. package/node_modules/tweetnacl/nacl.js +1175 -0
  203. package/node_modules/tweetnacl/nacl.min.js +1 -0
  204. package/node_modules/tweetnacl/package.json +58 -0
  205. package/package.json +10 -2
@@ -0,0 +1,65 @@
1
+ @Library('jenkins-joylib@v1.0.8') _
2
+
3
+ pipeline {
4
+
5
+ agent none
6
+
7
+ options {
8
+ buildDiscarder(logRotator(numToKeepStr: '45'))
9
+ timestamps()
10
+ }
11
+
12
+ stages {
13
+ stage('top') {
14
+ parallel {
15
+ stage('v4-zone') {
16
+ agent {
17
+ label joyCommonLabels(image_ver: '15.4.1')
18
+ }
19
+ tools {
20
+ nodejs 'sdcnode-v4-zone'
21
+ }
22
+ stages {
23
+ stage('check') {
24
+ steps{
25
+ sh('make check')
26
+ }
27
+ }
28
+ stage('test') {
29
+ steps{
30
+ sh('make test')
31
+ }
32
+ }
33
+ }
34
+ }
35
+
36
+ stage('v6-zone64') {
37
+ agent {
38
+ label joyCommonLabels(image_ver: '18.4.0')
39
+ }
40
+ tools {
41
+ nodejs 'sdcnode-v6-zone64'
42
+ }
43
+ stages {
44
+ stage('check') {
45
+ steps{
46
+ sh('make check')
47
+ }
48
+ }
49
+ stage('test') {
50
+ steps{
51
+ sh('make test')
52
+ }
53
+ }
54
+ }
55
+ }
56
+ }
57
+ }
58
+ }
59
+
60
+ post {
61
+ always {
62
+ joySlackNotifications()
63
+ }
64
+ }
65
+ }
@@ -0,0 +1,19 @@
1
+ Copyright (c) 2011 Mark Cavage, All rights reserved.
2
+
3
+ Permission is hereby granted, free of charge, to any person obtaining a copy
4
+ of this software and associated documentation files (the "Software"), to deal
5
+ in the Software without restriction, including without limitation the rights
6
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
7
+ copies of the Software, and to permit persons to whom the Software is
8
+ furnished to do so, subject to the following conditions:
9
+
10
+ The above copyright notice and this permission notice shall be included in
11
+ all copies or substantial portions of the Software.
12
+
13
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
14
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
15
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
16
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
17
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
18
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
19
+ THE SOFTWARE
@@ -0,0 +1,50 @@
1
+ node-asn1 is a library for encoding and decoding ASN.1 datatypes in pure JS.
2
+ Currently BER encoding is supported; at some point I'll likely have to do DER.
3
+
4
+ ## Usage
5
+
6
+ Mostly, if you're *actually* needing to read and write ASN.1, you probably don't
7
+ need this readme to explain what and why. If you have no idea what ASN.1 is,
8
+ see this: ftp://ftp.rsa.com/pub/pkcs/ascii/layman.asc
9
+
10
+ The source is pretty much self-explanatory, and has read/write methods for the
11
+ common types out there.
12
+
13
+ ### Decoding
14
+
15
+ The following reads an ASN.1 sequence with a boolean.
16
+
17
+ var Ber = require('asn1').Ber;
18
+
19
+ var reader = new Ber.Reader(Buffer.from([0x30, 0x03, 0x01, 0x01, 0xff]));
20
+
21
+ reader.readSequence();
22
+ console.log('Sequence len: ' + reader.length);
23
+ if (reader.peek() === Ber.Boolean)
24
+ console.log(reader.readBoolean());
25
+
26
+ ### Encoding
27
+
28
+ The following generates the same payload as above.
29
+
30
+ var Ber = require('asn1').Ber;
31
+
32
+ var writer = new Ber.Writer();
33
+
34
+ writer.startSequence();
35
+ writer.writeBoolean(true);
36
+ writer.endSequence();
37
+
38
+ console.log(writer.buffer);
39
+
40
+ ## Installation
41
+
42
+ npm install asn1
43
+
44
+ ## License
45
+
46
+ MIT.
47
+
48
+ ## Bugs
49
+
50
+ See <https://github.com/joyent/node-asn1/issues>.
@@ -0,0 +1,13 @@
1
+ // Copyright 2011 Mark Cavage <mcavage@gmail.com> All rights reserved.
2
+
3
+
4
+ module.exports = {
5
+
6
+ newInvalidAsn1Error: function (msg) {
7
+ var e = new Error();
8
+ e.name = 'InvalidAsn1Error';
9
+ e.message = msg || '';
10
+ return e;
11
+ }
12
+
13
+ };
@@ -0,0 +1,27 @@
1
+ // Copyright 2011 Mark Cavage <mcavage@gmail.com> All rights reserved.
2
+
3
+ var errors = require('./errors');
4
+ var types = require('./types');
5
+
6
+ var Reader = require('./reader');
7
+ var Writer = require('./writer');
8
+
9
+
10
+ // --- Exports
11
+
12
+ module.exports = {
13
+
14
+ Reader: Reader,
15
+
16
+ Writer: Writer
17
+
18
+ };
19
+
20
+ for (var t in types) {
21
+ if (types.hasOwnProperty(t))
22
+ module.exports[t] = types[t];
23
+ }
24
+ for (var e in errors) {
25
+ if (errors.hasOwnProperty(e))
26
+ module.exports[e] = errors[e];
27
+ }
@@ -0,0 +1,262 @@
1
+ // Copyright 2011 Mark Cavage <mcavage@gmail.com> All rights reserved.
2
+
3
+ var assert = require('assert');
4
+ var Buffer = require('safer-buffer').Buffer;
5
+
6
+ var ASN1 = require('./types');
7
+ var errors = require('./errors');
8
+
9
+
10
+ // --- Globals
11
+
12
+ var newInvalidAsn1Error = errors.newInvalidAsn1Error;
13
+
14
+
15
+
16
+ // --- API
17
+
18
+ function Reader(data) {
19
+ if (!data || !Buffer.isBuffer(data))
20
+ throw new TypeError('data must be a node Buffer');
21
+
22
+ this._buf = data;
23
+ this._size = data.length;
24
+
25
+ // These hold the "current" state
26
+ this._len = 0;
27
+ this._offset = 0;
28
+ }
29
+
30
+ Object.defineProperty(Reader.prototype, 'length', {
31
+ enumerable: true,
32
+ get: function () { return (this._len); }
33
+ });
34
+
35
+ Object.defineProperty(Reader.prototype, 'offset', {
36
+ enumerable: true,
37
+ get: function () { return (this._offset); }
38
+ });
39
+
40
+ Object.defineProperty(Reader.prototype, 'remain', {
41
+ get: function () { return (this._size - this._offset); }
42
+ });
43
+
44
+ Object.defineProperty(Reader.prototype, 'buffer', {
45
+ get: function () { return (this._buf.slice(this._offset)); }
46
+ });
47
+
48
+
49
+ /**
50
+ * Reads a single byte and advances offset; you can pass in `true` to make this
51
+ * a "peek" operation (i.e., get the byte, but don't advance the offset).
52
+ *
53
+ * @param {Boolean} peek true means don't move offset.
54
+ * @return {Number} the next byte, null if not enough data.
55
+ */
56
+ Reader.prototype.readByte = function (peek) {
57
+ if (this._size - this._offset < 1)
58
+ return null;
59
+
60
+ var b = this._buf[this._offset] & 0xff;
61
+
62
+ if (!peek)
63
+ this._offset += 1;
64
+
65
+ return b;
66
+ };
67
+
68
+
69
+ Reader.prototype.peek = function () {
70
+ return this.readByte(true);
71
+ };
72
+
73
+
74
+ /**
75
+ * Reads a (potentially) variable length off the BER buffer. This call is
76
+ * not really meant to be called directly, as callers have to manipulate
77
+ * the internal buffer afterwards.
78
+ *
79
+ * As a result of this call, you can call `Reader.length`, until the
80
+ * next thing called that does a readLength.
81
+ *
82
+ * @return {Number} the amount of offset to advance the buffer.
83
+ * @throws {InvalidAsn1Error} on bad ASN.1
84
+ */
85
+ Reader.prototype.readLength = function (offset) {
86
+ if (offset === undefined)
87
+ offset = this._offset;
88
+
89
+ if (offset >= this._size)
90
+ return null;
91
+
92
+ var lenB = this._buf[offset++] & 0xff;
93
+ if (lenB === null)
94
+ return null;
95
+
96
+ if ((lenB & 0x80) === 0x80) {
97
+ lenB &= 0x7f;
98
+
99
+ if (lenB === 0)
100
+ throw newInvalidAsn1Error('Indefinite length not supported');
101
+
102
+ if (lenB > 4)
103
+ throw newInvalidAsn1Error('encoding too long');
104
+
105
+ if (this._size - offset < lenB)
106
+ return null;
107
+
108
+ this._len = 0;
109
+ for (var i = 0; i < lenB; i++)
110
+ this._len = (this._len << 8) + (this._buf[offset++] & 0xff);
111
+
112
+ } else {
113
+ // Wasn't a variable length
114
+ this._len = lenB;
115
+ }
116
+
117
+ return offset;
118
+ };
119
+
120
+
121
+ /**
122
+ * Parses the next sequence in this BER buffer.
123
+ *
124
+ * To get the length of the sequence, call `Reader.length`.
125
+ *
126
+ * @return {Number} the sequence's tag.
127
+ */
128
+ Reader.prototype.readSequence = function (tag) {
129
+ var seq = this.peek();
130
+ if (seq === null)
131
+ return null;
132
+ if (tag !== undefined && tag !== seq)
133
+ throw newInvalidAsn1Error('Expected 0x' + tag.toString(16) +
134
+ ': got 0x' + seq.toString(16));
135
+
136
+ var o = this.readLength(this._offset + 1); // stored in `length`
137
+ if (o === null)
138
+ return null;
139
+
140
+ this._offset = o;
141
+ return seq;
142
+ };
143
+
144
+
145
+ Reader.prototype.readInt = function () {
146
+ return this._readTag(ASN1.Integer);
147
+ };
148
+
149
+
150
+ Reader.prototype.readBoolean = function () {
151
+ return (this._readTag(ASN1.Boolean) === 0 ? false : true);
152
+ };
153
+
154
+
155
+ Reader.prototype.readEnumeration = function () {
156
+ return this._readTag(ASN1.Enumeration);
157
+ };
158
+
159
+
160
+ Reader.prototype.readString = function (tag, retbuf) {
161
+ if (!tag)
162
+ tag = ASN1.OctetString;
163
+
164
+ var b = this.peek();
165
+ if (b === null)
166
+ return null;
167
+
168
+ if (b !== tag)
169
+ throw newInvalidAsn1Error('Expected 0x' + tag.toString(16) +
170
+ ': got 0x' + b.toString(16));
171
+
172
+ var o = this.readLength(this._offset + 1); // stored in `length`
173
+
174
+ if (o === null)
175
+ return null;
176
+
177
+ if (this.length > this._size - o)
178
+ return null;
179
+
180
+ this._offset = o;
181
+
182
+ if (this.length === 0)
183
+ return retbuf ? Buffer.alloc(0) : '';
184
+
185
+ var str = this._buf.slice(this._offset, this._offset + this.length);
186
+ this._offset += this.length;
187
+
188
+ return retbuf ? str : str.toString('utf8');
189
+ };
190
+
191
+ Reader.prototype.readOID = function (tag) {
192
+ if (!tag)
193
+ tag = ASN1.OID;
194
+
195
+ var b = this.readString(tag, true);
196
+ if (b === null)
197
+ return null;
198
+
199
+ var values = [];
200
+ var value = 0;
201
+
202
+ for (var i = 0; i < b.length; i++) {
203
+ var byte = b[i] & 0xff;
204
+
205
+ value <<= 7;
206
+ value += byte & 0x7f;
207
+ if ((byte & 0x80) === 0) {
208
+ values.push(value);
209
+ value = 0;
210
+ }
211
+ }
212
+
213
+ value = values.shift();
214
+ values.unshift(value % 40);
215
+ values.unshift((value / 40) >> 0);
216
+
217
+ return values.join('.');
218
+ };
219
+
220
+
221
+ Reader.prototype._readTag = function (tag) {
222
+ assert.ok(tag !== undefined);
223
+
224
+ var b = this.peek();
225
+
226
+ if (b === null)
227
+ return null;
228
+
229
+ if (b !== tag)
230
+ throw newInvalidAsn1Error('Expected 0x' + tag.toString(16) +
231
+ ': got 0x' + b.toString(16));
232
+
233
+ var o = this.readLength(this._offset + 1); // stored in `length`
234
+ if (o === null)
235
+ return null;
236
+
237
+ if (this.length > 4)
238
+ throw newInvalidAsn1Error('Integer too long: ' + this.length);
239
+
240
+ if (this.length > this._size - o)
241
+ return null;
242
+ this._offset = o;
243
+
244
+ var fb = this._buf[this._offset];
245
+ var value = 0;
246
+
247
+ for (var i = 0; i < this.length; i++) {
248
+ value <<= 8;
249
+ value |= (this._buf[this._offset++] & 0xff);
250
+ }
251
+
252
+ if ((fb & 0x80) === 0x80 && i !== 4)
253
+ value -= (1 << (i * 8));
254
+
255
+ return value >> 0;
256
+ };
257
+
258
+
259
+
260
+ // --- Exported API
261
+
262
+ module.exports = Reader;
@@ -0,0 +1,36 @@
1
+ // Copyright 2011 Mark Cavage <mcavage@gmail.com> All rights reserved.
2
+
3
+
4
+ module.exports = {
5
+ EOC: 0,
6
+ Boolean: 1,
7
+ Integer: 2,
8
+ BitString: 3,
9
+ OctetString: 4,
10
+ Null: 5,
11
+ OID: 6,
12
+ ObjectDescriptor: 7,
13
+ External: 8,
14
+ Real: 9, // float
15
+ Enumeration: 10,
16
+ PDV: 11,
17
+ Utf8String: 12,
18
+ RelativeOID: 13,
19
+ Sequence: 16,
20
+ Set: 17,
21
+ NumericString: 18,
22
+ PrintableString: 19,
23
+ T61String: 20,
24
+ VideotexString: 21,
25
+ IA5String: 22,
26
+ UTCTime: 23,
27
+ GeneralizedTime: 24,
28
+ GraphicString: 25,
29
+ VisibleString: 26,
30
+ GeneralString: 28,
31
+ UniversalString: 29,
32
+ CharacterString: 30,
33
+ BMPString: 31,
34
+ Constructor: 32,
35
+ Context: 128
36
+ };