ahmad-module 1.0.0
Sign up to get free protection for your applications and to get access to all the features.
Potentially problematic release.
This version of ahmad-module might be problematic. Click here for more details.
- package/.bin/sshpk-conv +12 -0
- package/.bin/sshpk-conv.cmd +17 -0
- package/.bin/sshpk-conv.ps1 +28 -0
- package/.bin/sshpk-sign +12 -0
- package/.bin/sshpk-sign.cmd +17 -0
- package/.bin/sshpk-sign.ps1 +28 -0
- package/.bin/sshpk-verify +12 -0
- package/.bin/sshpk-verify.cmd +17 -0
- package/.bin/sshpk-verify.ps1 +28 -0
- package/.bin/uuid +12 -0
- package/.bin/uuid.cmd +17 -0
- package/.bin/uuid.ps1 +28 -0
- package/ajv/.tonic_example.js +20 -0
- package/ajv/LICENSE +22 -0
- package/ajv/README.md +1497 -0
- package/ajv/dist/ajv.bundle.js +7189 -0
- package/ajv/dist/ajv.min.js +3 -0
- package/ajv/dist/ajv.min.js.map +1 -0
- package/ajv/lib/ajv.d.ts +397 -0
- package/ajv/lib/ajv.js +506 -0
- package/ajv/lib/cache.js +26 -0
- package/ajv/lib/compile/async.js +90 -0
- package/ajv/lib/compile/equal.js +5 -0
- package/ajv/lib/compile/error_classes.js +34 -0
- package/ajv/lib/compile/formats.js +142 -0
- package/ajv/lib/compile/index.js +387 -0
- package/ajv/lib/compile/resolve.js +270 -0
- package/ajv/lib/compile/rules.js +66 -0
- package/ajv/lib/compile/schema_obj.js +9 -0
- package/ajv/lib/compile/ucs2length.js +20 -0
- package/ajv/lib/compile/util.js +239 -0
- package/ajv/lib/data.js +49 -0
- package/ajv/lib/definition_schema.js +37 -0
- package/ajv/lib/dot/_limit.jst +113 -0
- package/ajv/lib/dot/_limitItems.jst +12 -0
- package/ajv/lib/dot/_limitLength.jst +12 -0
- package/ajv/lib/dot/_limitProperties.jst +12 -0
- package/ajv/lib/dot/allOf.jst +32 -0
- package/ajv/lib/dot/anyOf.jst +46 -0
- package/ajv/lib/dot/coerce.def +51 -0
- package/ajv/lib/dot/comment.jst +9 -0
- package/ajv/lib/dot/const.jst +11 -0
- package/ajv/lib/dot/contains.jst +55 -0
- package/ajv/lib/dot/custom.jst +191 -0
- package/ajv/lib/dot/defaults.def +47 -0
- package/ajv/lib/dot/definitions.def +203 -0
- package/ajv/lib/dot/dependencies.jst +79 -0
- package/ajv/lib/dot/enum.jst +30 -0
- package/ajv/lib/dot/errors.def +194 -0
- package/ajv/lib/dot/format.jst +106 -0
- package/ajv/lib/dot/if.jst +73 -0
- package/ajv/lib/dot/items.jst +98 -0
- package/ajv/lib/dot/missing.def +39 -0
- package/ajv/lib/dot/multipleOf.jst +22 -0
- package/ajv/lib/dot/not.jst +43 -0
- package/ajv/lib/dot/oneOf.jst +54 -0
- package/ajv/lib/dot/pattern.jst +14 -0
- package/ajv/lib/dot/properties.jst +245 -0
- package/ajv/lib/dot/propertyNames.jst +52 -0
- package/ajv/lib/dot/ref.jst +85 -0
- package/ajv/lib/dot/required.jst +108 -0
- package/ajv/lib/dot/uniqueItems.jst +62 -0
- package/ajv/lib/dot/validate.jst +276 -0
- package/ajv/lib/dotjs/README.md +3 -0
- package/ajv/lib/dotjs/_limit.js +163 -0
- package/ajv/lib/dotjs/_limitItems.js +80 -0
- package/ajv/lib/dotjs/_limitLength.js +85 -0
- package/ajv/lib/dotjs/_limitProperties.js +80 -0
- package/ajv/lib/dotjs/allOf.js +42 -0
- package/ajv/lib/dotjs/anyOf.js +73 -0
- package/ajv/lib/dotjs/comment.js +14 -0
- package/ajv/lib/dotjs/const.js +56 -0
- package/ajv/lib/dotjs/contains.js +81 -0
- package/ajv/lib/dotjs/custom.js +228 -0
- package/ajv/lib/dotjs/dependencies.js +168 -0
- package/ajv/lib/dotjs/enum.js +66 -0
- package/ajv/lib/dotjs/format.js +150 -0
- package/ajv/lib/dotjs/if.js +103 -0
- package/ajv/lib/dotjs/index.js +33 -0
- package/ajv/lib/dotjs/items.js +140 -0
- package/ajv/lib/dotjs/multipleOf.js +80 -0
- package/ajv/lib/dotjs/not.js +84 -0
- package/ajv/lib/dotjs/oneOf.js +73 -0
- package/ajv/lib/dotjs/pattern.js +75 -0
- package/ajv/lib/dotjs/properties.js +335 -0
- package/ajv/lib/dotjs/propertyNames.js +81 -0
- package/ajv/lib/dotjs/ref.js +124 -0
- package/ajv/lib/dotjs/required.js +270 -0
- package/ajv/lib/dotjs/uniqueItems.js +86 -0
- package/ajv/lib/dotjs/validate.js +482 -0
- package/ajv/lib/keyword.js +146 -0
- package/ajv/lib/refs/data.json +17 -0
- package/ajv/lib/refs/json-schema-draft-04.json +149 -0
- package/ajv/lib/refs/json-schema-draft-06.json +154 -0
- package/ajv/lib/refs/json-schema-draft-07.json +168 -0
- package/ajv/lib/refs/json-schema-secure.json +94 -0
- package/ajv/package.json +106 -0
- package/ajv/scripts/.eslintrc.yml +3 -0
- package/ajv/scripts/bundle.js +61 -0
- package/ajv/scripts/compile-dots.js +73 -0
- package/ajv/scripts/info +10 -0
- package/ajv/scripts/prepare-tests +12 -0
- package/ajv/scripts/publish-built-version +32 -0
- package/ajv/scripts/travis-gh-pages +23 -0
- package/asn1/Jenkinsfile +65 -0
- package/asn1/LICENSE +19 -0
- package/asn1/README.md +50 -0
- package/asn1/lib/ber/errors.js +13 -0
- package/asn1/lib/ber/index.js +27 -0
- package/asn1/lib/ber/reader.js +262 -0
- package/asn1/lib/ber/types.js +36 -0
- package/asn1/lib/ber/writer.js +317 -0
- package/asn1/lib/index.js +20 -0
- package/asn1/package.json +31 -0
- package/assert-plus/AUTHORS +6 -0
- package/assert-plus/CHANGES.md +14 -0
- package/assert-plus/README.md +162 -0
- package/assert-plus/assert.js +211 -0
- package/assert-plus/package.json +23 -0
- package/asynckit/LICENSE +21 -0
- package/asynckit/README.md +233 -0
- package/asynckit/bench.js +76 -0
- package/asynckit/index.js +6 -0
- package/asynckit/lib/abort.js +29 -0
- package/asynckit/lib/async.js +34 -0
- package/asynckit/lib/defer.js +26 -0
- package/asynckit/lib/iterate.js +75 -0
- package/asynckit/lib/readable_asynckit.js +91 -0
- package/asynckit/lib/readable_parallel.js +25 -0
- package/asynckit/lib/readable_serial.js +25 -0
- package/asynckit/lib/readable_serial_ordered.js +29 -0
- package/asynckit/lib/state.js +37 -0
- package/asynckit/lib/streamify.js +141 -0
- package/asynckit/lib/terminator.js +29 -0
- package/asynckit/package.json +63 -0
- package/asynckit/parallel.js +43 -0
- package/asynckit/serial.js +17 -0
- package/asynckit/serialOrdered.js +75 -0
- package/asynckit/stream.js +21 -0
- package/aws-sign2/LICENSE +55 -0
- package/aws-sign2/README.md +4 -0
- package/aws-sign2/index.js +212 -0
- package/aws-sign2/package.json +17 -0
- package/aws4/.github/FUNDING.yml +3 -0
- package/aws4/.travis.yml +9 -0
- package/aws4/LICENSE +19 -0
- package/aws4/README.md +183 -0
- package/aws4/aws4.js +373 -0
- package/aws4/lru.js +96 -0
- package/aws4/package.json +17 -0
- package/axios/CHANGELOG.md +775 -0
- package/axios/LICENSE +19 -0
- package/axios/README.md +868 -0
- package/axios/SECURITY.md +5 -0
- package/axios/UPGRADE_GUIDE.md +162 -0
- package/axios/dist/axios.js +2193 -0
- package/axios/dist/axios.map +1 -0
- package/axios/dist/axios.min.js +3 -0
- package/axios/dist/axios.min.map +1 -0
- package/axios/index.d.ts +168 -0
- package/axios/index.js +1 -0
- package/axios/lib/adapters/README.md +37 -0
- package/axios/lib/adapters/http.js +331 -0
- package/axios/lib/adapters/xhr.js +189 -0
- package/axios/lib/axios.js +56 -0
- package/axios/lib/cancel/Cancel.js +19 -0
- package/axios/lib/cancel/CancelToken.js +57 -0
- package/axios/lib/cancel/isCancel.js +5 -0
- package/axios/lib/core/Axios.js +148 -0
- package/axios/lib/core/InterceptorManager.js +54 -0
- package/axios/lib/core/README.md +8 -0
- package/axios/lib/core/buildFullPath.js +20 -0
- package/axios/lib/core/createError.js +18 -0
- package/axios/lib/core/dispatchRequest.js +82 -0
- package/axios/lib/core/enhanceError.js +42 -0
- package/axios/lib/core/mergeConfig.js +87 -0
- package/axios/lib/core/settle.js +25 -0
- package/axios/lib/core/transformData.js +22 -0
- package/axios/lib/defaults.js +134 -0
- package/axios/lib/helpers/README.md +7 -0
- package/axios/lib/helpers/bind.js +11 -0
- package/axios/lib/helpers/buildURL.js +70 -0
- package/axios/lib/helpers/combineURLs.js +14 -0
- package/axios/lib/helpers/cookies.js +53 -0
- package/axios/lib/helpers/deprecatedMethod.js +24 -0
- package/axios/lib/helpers/isAbsoluteURL.js +14 -0
- package/axios/lib/helpers/isAxiosError.js +11 -0
- package/axios/lib/helpers/isURLSameOrigin.js +68 -0
- package/axios/lib/helpers/normalizeHeaderName.js +12 -0
- package/axios/lib/helpers/parseHeaders.js +53 -0
- package/axios/lib/helpers/spread.js +27 -0
- package/axios/lib/helpers/validator.js +105 -0
- package/axios/lib/utils.js +349 -0
- package/axios/package.json +84 -0
- package/bcrypt-pbkdf/CONTRIBUTING.md +13 -0
- package/bcrypt-pbkdf/LICENSE +66 -0
- package/bcrypt-pbkdf/README.md +45 -0
- package/bcrypt-pbkdf/index.js +556 -0
- package/bcrypt-pbkdf/package.json +15 -0
- package/caseless/LICENSE +28 -0
- package/caseless/README.md +45 -0
- package/caseless/index.js +67 -0
- package/caseless/package.json +27 -0
- package/caseless/test.js +67 -0
- package/combined-stream/License +19 -0
- package/combined-stream/Readme.md +138 -0
- package/combined-stream/lib/combined_stream.js +208 -0
- package/combined-stream/package.json +25 -0
- package/combined-stream/yarn.lock +17 -0
- package/core-util-is/LICENSE +19 -0
- package/core-util-is/README.md +3 -0
- package/core-util-is/float.patch +604 -0
- package/core-util-is/lib/util.js +107 -0
- package/core-util-is/package.json +32 -0
- package/core-util-is/test.js +68 -0
- package/dashdash/CHANGES.md +364 -0
- package/dashdash/LICENSE.txt +24 -0
- package/dashdash/README.md +574 -0
- package/dashdash/etc/dashdash.bash_completion.in +389 -0
- package/dashdash/lib/dashdash.js +1055 -0
- package/dashdash/package.json +26 -0
- package/delayed-stream/License +19 -0
- package/delayed-stream/Makefile +7 -0
- package/delayed-stream/Readme.md +141 -0
- package/delayed-stream/lib/delayed_stream.js +107 -0
- package/delayed-stream/package.json +27 -0
- package/ecc-jsbn/LICENSE +21 -0
- package/ecc-jsbn/README.md +8 -0
- package/ecc-jsbn/index.js +58 -0
- package/ecc-jsbn/lib/LICENSE-jsbn +40 -0
- package/ecc-jsbn/lib/ec.js +561 -0
- package/ecc-jsbn/lib/sec.js +170 -0
- package/ecc-jsbn/package.json +40 -0
- package/ecc-jsbn/test.js +14 -0
- package/extend/.editorconfig +20 -0
- package/extend/.eslintrc +17 -0
- package/extend/.jscs.json +175 -0
- package/extend/.travis.yml +230 -0
- package/extend/CHANGELOG.md +83 -0
- package/extend/LICENSE +23 -0
- package/extend/README.md +81 -0
- package/extend/component.json +32 -0
- package/extend/index.js +117 -0
- package/extend/package.json +42 -0
- package/extsprintf/.gitmodules +0 -0
- package/extsprintf/LICENSE +19 -0
- package/extsprintf/Makefile +24 -0
- package/extsprintf/Makefile.targ +285 -0
- package/extsprintf/README.md +46 -0
- package/extsprintf/jsl.node.conf +137 -0
- package/extsprintf/lib/extsprintf.js +183 -0
- package/extsprintf/package.json +14 -0
- package/fast-deep-equal/LICENSE +21 -0
- package/fast-deep-equal/README.md +96 -0
- package/fast-deep-equal/es6/index.d.ts +2 -0
- package/fast-deep-equal/es6/index.js +72 -0
- package/fast-deep-equal/es6/react.d.ts +2 -0
- package/fast-deep-equal/es6/react.js +79 -0
- package/fast-deep-equal/index.d.ts +4 -0
- package/fast-deep-equal/index.js +46 -0
- package/fast-deep-equal/package.json +61 -0
- package/fast-deep-equal/react.d.ts +2 -0
- package/fast-deep-equal/react.js +53 -0
- package/fast-json-stable-stringify/.eslintrc.yml +26 -0
- package/fast-json-stable-stringify/.github/FUNDING.yml +1 -0
- package/fast-json-stable-stringify/.travis.yml +8 -0
- package/fast-json-stable-stringify/LICENSE +21 -0
- package/fast-json-stable-stringify/README.md +131 -0
- package/fast-json-stable-stringify/benchmark/index.js +31 -0
- package/fast-json-stable-stringify/benchmark/test.json +137 -0
- package/fast-json-stable-stringify/example/key_cmp.js +7 -0
- package/fast-json-stable-stringify/example/nested.js +3 -0
- package/fast-json-stable-stringify/example/str.js +3 -0
- package/fast-json-stable-stringify/example/value_cmp.js +7 -0
- package/fast-json-stable-stringify/index.d.ts +4 -0
- package/fast-json-stable-stringify/index.js +59 -0
- package/fast-json-stable-stringify/package.json +52 -0
- package/fast-json-stable-stringify/test/cmp.js +13 -0
- package/fast-json-stable-stringify/test/nested.js +44 -0
- package/fast-json-stable-stringify/test/str.js +46 -0
- package/fast-json-stable-stringify/test/to-json.js +22 -0
- package/follow-redirects/LICENSE +18 -0
- package/follow-redirects/README.md +155 -0
- package/follow-redirects/debug.js +15 -0
- package/follow-redirects/http.js +1 -0
- package/follow-redirects/https.js +1 -0
- package/follow-redirects/index.js +598 -0
- package/follow-redirects/package.json +59 -0
- package/forever-agent/LICENSE +55 -0
- package/forever-agent/README.md +4 -0
- package/forever-agent/index.js +138 -0
- package/forever-agent/package.json +17 -0
- package/form-data/License +19 -0
- package/form-data/README.md +234 -0
- package/form-data/README.md.bak +234 -0
- package/form-data/lib/browser.js +2 -0
- package/form-data/lib/form_data.js +457 -0
- package/form-data/lib/populate.js +10 -0
- package/form-data/package.json +65 -0
- package/form-data/yarn.lock +2662 -0
- package/getpass/.travis.yml +9 -0
- package/getpass/LICENSE +18 -0
- package/getpass/README.md +32 -0
- package/getpass/lib/index.js +123 -0
- package/getpass/package.json +18 -0
- package/har-schema/LICENSE +13 -0
- package/har-schema/README.md +49 -0
- package/har-schema/lib/afterRequest.json +30 -0
- package/har-schema/lib/beforeRequest.json +30 -0
- package/har-schema/lib/browser.json +20 -0
- package/har-schema/lib/cache.json +21 -0
- package/har-schema/lib/content.json +29 -0
- package/har-schema/lib/cookie.json +36 -0
- package/har-schema/lib/creator.json +20 -0
- package/har-schema/lib/entry.json +53 -0
- package/har-schema/lib/har.json +13 -0
- package/har-schema/lib/header.json +20 -0
- package/har-schema/lib/index.js +22 -0
- package/har-schema/lib/log.json +36 -0
- package/har-schema/lib/page.json +32 -0
- package/har-schema/lib/pageTimings.json +18 -0
- package/har-schema/lib/postData.json +43 -0
- package/har-schema/lib/query.json +20 -0
- package/har-schema/lib/request.json +57 -0
- package/har-schema/lib/response.json +54 -0
- package/har-schema/lib/timings.json +42 -0
- package/har-schema/package.json +54 -0
- package/har-validator/LICENSE +9 -0
- package/har-validator/README.md +43 -0
- package/har-validator/lib/async.js +105 -0
- package/har-validator/lib/error.js +17 -0
- package/har-validator/lib/promise.js +102 -0
- package/har-validator/package.json +43 -0
- package/http-signature/.dir-locals.el +6 -0
- package/http-signature/CHANGES.md +46 -0
- package/http-signature/LICENSE +18 -0
- package/http-signature/README.md +79 -0
- package/http-signature/http_signing.md +363 -0
- package/http-signature/lib/index.js +29 -0
- package/http-signature/lib/parser.js +315 -0
- package/http-signature/lib/signer.js +401 -0
- package/http-signature/lib/utils.js +112 -0
- package/http-signature/lib/verify.js +88 -0
- package/http-signature/package.json +39 -0
- package/is-typedarray/LICENSE.md +18 -0
- package/is-typedarray/README.md +16 -0
- package/is-typedarray/index.js +41 -0
- package/is-typedarray/package.json +30 -0
- package/is-typedarray/test.js +34 -0
- package/isstream/.jshintrc +59 -0
- package/isstream/.travis.yml +12 -0
- package/isstream/LICENSE.md +11 -0
- package/isstream/README.md +66 -0
- package/isstream/isstream.js +27 -0
- package/isstream/package.json +33 -0
- package/isstream/test.js +168 -0
- package/jsbn/LICENSE +40 -0
- package/jsbn/README.md +175 -0
- package/jsbn/example.html +12 -0
- package/jsbn/example.js +3 -0
- package/jsbn/index.js +1357 -0
- package/jsbn/package.json +21 -0
- package/json-schema/LICENSE +195 -0
- package/json-schema/README.md +3 -0
- package/json-schema/lib/links.js +65 -0
- package/json-schema/lib/validate.js +271 -0
- package/json-schema/package.json +24 -0
- package/json-schema-traverse/.eslintrc.yml +27 -0
- package/json-schema-traverse/.travis.yml +8 -0
- package/json-schema-traverse/LICENSE +21 -0
- package/json-schema-traverse/README.md +83 -0
- package/json-schema-traverse/index.js +89 -0
- package/json-schema-traverse/package.json +43 -0
- package/json-schema-traverse/spec/.eslintrc.yml +6 -0
- package/json-schema-traverse/spec/fixtures/schema.js +125 -0
- package/json-schema-traverse/spec/index.spec.js +171 -0
- package/json-stringify-safe/CHANGELOG.md +14 -0
- package/json-stringify-safe/LICENSE +15 -0
- package/json-stringify-safe/Makefile +35 -0
- package/json-stringify-safe/README.md +52 -0
- package/json-stringify-safe/package.json +31 -0
- package/json-stringify-safe/stringify.js +27 -0
- package/json-stringify-safe/test/mocha.opts +2 -0
- package/json-stringify-safe/test/stringify_test.js +246 -0
- package/jsprim/CHANGES.md +53 -0
- package/jsprim/CONTRIBUTING.md +19 -0
- package/jsprim/LICENSE +19 -0
- package/jsprim/README.md +287 -0
- package/jsprim/lib/jsprim.js +735 -0
- package/jsprim/package.json +20 -0
- package/m3u8stream/LICENSE +21 -0
- package/m3u8stream/README.md +81 -0
- package/m3u8stream/dist/dash-mpd-parser.d.ts +11 -0
- package/m3u8stream/dist/dash-mpd-parser.js +183 -0
- package/m3u8stream/dist/dash-mpd-parser.js.map +1 -0
- package/m3u8stream/dist/index.d.ts +31 -0
- package/m3u8stream/dist/index.js +180 -0
- package/m3u8stream/dist/index.js.map +1 -0
- package/m3u8stream/dist/m3u8-parser.d.ts +18 -0
- package/m3u8stream/dist/m3u8-parser.js +111 -0
- package/m3u8stream/dist/m3u8-parser.js.map +1 -0
- package/m3u8stream/dist/parse-time.d.ts +16 -0
- package/m3u8stream/dist/parse-time.js +59 -0
- package/m3u8stream/dist/parse-time.js.map +1 -0
- package/m3u8stream/dist/parser.d.ts +19 -0
- package/m3u8stream/dist/parser.js +3 -0
- package/m3u8stream/dist/parser.js.map +1 -0
- package/m3u8stream/dist/queue.d.ts +39 -0
- package/m3u8stream/dist/queue.js +58 -0
- package/m3u8stream/dist/queue.js.map +1 -0
- package/m3u8stream/node_modules/sax/LICENSE +41 -0
- package/m3u8stream/node_modules/sax/README.md +225 -0
- package/m3u8stream/node_modules/sax/lib/sax.js +1565 -0
- package/m3u8stream/node_modules/sax/package.json +25 -0
- package/m3u8stream/package.json +54 -0
- package/mime-db/HISTORY.md +507 -0
- package/mime-db/LICENSE +23 -0
- package/mime-db/README.md +100 -0
- package/mime-db/db.json +8519 -0
- package/mime-db/index.js +12 -0
- package/mime-db/package.json +60 -0
- package/mime-types/HISTORY.md +397 -0
- package/mime-types/LICENSE +23 -0
- package/mime-types/README.md +113 -0
- package/mime-types/index.js +188 -0
- package/mime-types/package.json +44 -0
- package/miniget/LICENSE +21 -0
- package/miniget/README.md +111 -0
- package/miniget/dist/index.d.ts +65 -0
- package/miniget/dist/index.js +281 -0
- package/miniget/dist/index.js.map +1 -0
- package/miniget/package.json +49 -0
- package/oauth-sign/LICENSE +55 -0
- package/oauth-sign/README.md +11 -0
- package/oauth-sign/index.js +146 -0
- package/oauth-sign/package.json +23 -0
- package/package.json +11 -0
- package/performance-now/.tm_properties +7 -0
- package/performance-now/.travis.yml +6 -0
- package/performance-now/README.md +30 -0
- package/performance-now/lib/performance-now.js +36 -0
- package/performance-now/lib/performance-now.js.map +10 -0
- package/performance-now/license.txt +7 -0
- package/performance-now/package.json +35 -0
- package/performance-now/src/index.d.ts +8 -0
- package/performance-now/src/performance-now.coffee +17 -0
- package/performance-now/test/mocha.opts +3 -0
- package/performance-now/test/performance-now.coffee +43 -0
- package/performance-now/test/scripts/delayed-call.coffee +11 -0
- package/performance-now/test/scripts/delayed-require.coffee +12 -0
- package/performance-now/test/scripts/difference.coffee +6 -0
- package/performance-now/test/scripts/initial-value.coffee +10 -0
- package/performance-now/test/scripts.coffee +27 -0
- package/psl/.env +0 -0
- package/psl/LICENSE +9 -0
- package/psl/README.md +211 -0
- package/psl/browserstack-logo.svg +90 -0
- package/psl/data/rules.json +9376 -0
- package/psl/dist/psl.js +10187 -0
- package/psl/dist/psl.min.js +1 -0
- package/psl/index.js +269 -0
- package/psl/package.json +43 -0
- package/punycode/LICENSE-MIT.txt +20 -0
- package/punycode/README.md +122 -0
- package/punycode/package.json +58 -0
- package/punycode/punycode.es6.js +441 -0
- package/punycode/punycode.js +440 -0
- package/qs/.editorconfig +43 -0
- package/qs/.eslintrc +37 -0
- package/qs/.github/FUNDING.yml +12 -0
- package/qs/.nycrc +13 -0
- package/qs/CHANGELOG.md +250 -0
- package/qs/LICENSE.md +29 -0
- package/qs/README.md +510 -0
- package/qs/bower.json +21 -0
- package/qs/component.json +15 -0
- package/qs/dist/qs.js +648 -0
- package/qs/lib/formats.js +18 -0
- package/qs/lib/index.js +11 -0
- package/qs/lib/parse.js +175 -0
- package/qs/lib/stringify.js +217 -0
- package/qs/lib/utils.js +215 -0
- package/qs/package.json +54 -0
- package/qs/test/index.js +7 -0
- package/qs/test/parse.js +649 -0
- package/qs/test/stringify.js +642 -0
- package/qs/test/utils.js +65 -0
- package/request/CHANGELOG.md +717 -0
- package/request/LICENSE +55 -0
- package/request/README.md +1133 -0
- package/request/index.js +155 -0
- package/request/lib/auth.js +167 -0
- package/request/lib/cookies.js +38 -0
- package/request/lib/getProxyFromURI.js +79 -0
- package/request/lib/har.js +205 -0
- package/request/lib/hawk.js +89 -0
- package/request/lib/helpers.js +66 -0
- package/request/lib/multipart.js +112 -0
- package/request/lib/oauth.js +148 -0
- package/request/lib/querystring.js +50 -0
- package/request/lib/redirect.js +154 -0
- package/request/lib/tunnel.js +175 -0
- package/request/package.json +86 -0
- package/request/request.js +1553 -0
- package/safe-buffer/LICENSE +21 -0
- package/safe-buffer/README.md +584 -0
- package/safe-buffer/index.d.ts +187 -0
- package/safe-buffer/index.js +65 -0
- package/safe-buffer/package.json +51 -0
- package/safer-buffer/LICENSE +21 -0
- package/safer-buffer/Porting-Buffer.md +268 -0
- package/safer-buffer/Readme.md +156 -0
- package/safer-buffer/dangerous.js +58 -0
- package/safer-buffer/package.json +34 -0
- package/safer-buffer/safer.js +77 -0
- package/safer-buffer/tests.js +406 -0
- package/sax/AUTHORS +10 -0
- package/sax/LICENSE +32 -0
- package/sax/LICENSE-W3C.html +188 -0
- package/sax/README.md +216 -0
- package/sax/component.json +12 -0
- package/sax/examples/big-not-pretty.xml +8002 -0
- package/sax/examples/example.js +29 -0
- package/sax/examples/get-products.js +58 -0
- package/sax/examples/hello-world.js +4 -0
- package/sax/examples/not-pretty.xml +8 -0
- package/sax/examples/pretty-print.js +74 -0
- package/sax/examples/shopping.xml +2 -0
- package/sax/examples/strict.dtd +870 -0
- package/sax/examples/test.html +15 -0
- package/sax/examples/test.xml +1254 -0
- package/sax/lib/sax.js +1355 -0
- package/sax/package.json +12 -0
- package/sax/test/attribute-name.js +33 -0
- package/sax/test/attribute-no-space.js +75 -0
- package/sax/test/buffer-overrun.js +26 -0
- package/sax/test/case.js +50 -0
- package/sax/test/cdata-chunked.js +11 -0
- package/sax/test/cdata-end-split.js +15 -0
- package/sax/test/cdata-fake-end.js +28 -0
- package/sax/test/cdata-multiple.js +15 -0
- package/sax/test/cdata.js +10 -0
- package/sax/test/cyrillic.js +8 -0
- package/sax/test/duplicate-attribute.js +13 -0
- package/sax/test/end_empty_stream.js +5 -0
- package/sax/test/entities.js +10 -0
- package/sax/test/entity-mega.js +16 -0
- package/sax/test/flush.js +13 -0
- package/sax/test/index.js +86 -0
- package/sax/test/issue-23.js +43 -0
- package/sax/test/issue-30.js +24 -0
- package/sax/test/issue-35.js +15 -0
- package/sax/test/issue-47.js +12 -0
- package/sax/test/issue-49.js +31 -0
- package/sax/test/issue-84.js +13 -0
- package/sax/test/parser-position.js +28 -0
- package/sax/test/script-close-better.js +12 -0
- package/sax/test/script.js +12 -0
- package/sax/test/self-closing-child-strict.js +44 -0
- package/sax/test/self-closing-child.js +44 -0
- package/sax/test/self-closing-tag.js +25 -0
- package/sax/test/stray-ending.js +17 -0
- package/sax/test/trailing-attribute-no-value.js +10 -0
- package/sax/test/trailing-non-whitespace.js +18 -0
- package/sax/test/unclosed-root.js +11 -0
- package/sax/test/unquoted.js +18 -0
- package/sax/test/utf8-split.js +32 -0
- package/sax/test/xmlns-as-tag-name.js +15 -0
- package/sax/test/xmlns-issue-41.js +68 -0
- package/sax/test/xmlns-rebinding.js +63 -0
- package/sax/test/xmlns-strict.js +74 -0
- package/sax/test/xmlns-unbound-element.js +33 -0
- package/sax/test/xmlns-unbound.js +15 -0
- package/sax/test/xmlns-xml-default-ns.js +31 -0
- package/sax/test/xmlns-xml-default-prefix-attribute.js +36 -0
- package/sax/test/xmlns-xml-default-prefix.js +21 -0
- package/sax/test/xmlns-xml-default-redefine.js +41 -0
- package/simple-csv-reader/.editorconfig +8 -0
- package/simple-csv-reader/LICENSE +21 -0
- package/simple-csv-reader/README.md +32 -0
- package/simple-csv-reader/dist/simple-csv-reader.min.js +2 -0
- package/simple-csv-reader/dist/simple-csv-reader.min.js.map +1 -0
- package/simple-csv-reader/gulpfile.js +26 -0
- package/simple-csv-reader/index.js +131 -0
- package/simple-csv-reader/package.json +38 -0
- package/sshpk/.travis.yml +11 -0
- package/sshpk/Jenkinsfile +86 -0
- package/sshpk/LICENSE +18 -0
- package/sshpk/README.md +804 -0
- package/sshpk/bin/sshpk-conv +243 -0
- package/sshpk/bin/sshpk-sign +191 -0
- package/sshpk/bin/sshpk-verify +167 -0
- package/sshpk/lib/algs.js +168 -0
- package/sshpk/lib/certificate.js +410 -0
- package/sshpk/lib/dhe.js +397 -0
- package/sshpk/lib/ed-compat.js +92 -0
- package/sshpk/lib/errors.js +84 -0
- package/sshpk/lib/fingerprint.js +220 -0
- package/sshpk/lib/formats/auto.js +124 -0
- package/sshpk/lib/formats/dnssec.js +287 -0
- package/sshpk/lib/formats/openssh-cert.js +352 -0
- package/sshpk/lib/formats/pem.js +290 -0
- package/sshpk/lib/formats/pkcs1.js +373 -0
- package/sshpk/lib/formats/pkcs8.js +631 -0
- package/sshpk/lib/formats/putty.js +194 -0
- package/sshpk/lib/formats/rfc4253.js +166 -0
- package/sshpk/lib/formats/ssh-private.js +262 -0
- package/sshpk/lib/formats/ssh.js +115 -0
- package/sshpk/lib/formats/x509-pem.js +88 -0
- package/sshpk/lib/formats/x509.js +752 -0
- package/sshpk/lib/identity.js +373 -0
- package/sshpk/lib/index.js +40 -0
- package/sshpk/lib/key.js +294 -0
- package/sshpk/lib/private-key.js +247 -0
- package/sshpk/lib/signature.js +314 -0
- package/sshpk/lib/ssh-buffer.js +149 -0
- package/sshpk/lib/utils.js +404 -0
- package/sshpk/man/man1/sshpk-conv.1 +135 -0
- package/sshpk/man/man1/sshpk-sign.1 +81 -0
- package/sshpk/man/man1/sshpk-verify.1 +68 -0
- package/sshpk/package.json +60 -0
- package/tough-cookie/LICENSE +12 -0
- package/tough-cookie/README.md +527 -0
- package/tough-cookie/lib/cookie.js +1482 -0
- package/tough-cookie/lib/memstore.js +181 -0
- package/tough-cookie/lib/pathMatch.js +61 -0
- package/tough-cookie/lib/permuteDomain.js +56 -0
- package/tough-cookie/lib/pubsuffix-psl.js +38 -0
- package/tough-cookie/lib/store.js +75 -0
- package/tough-cookie/lib/version.js +2 -0
- package/tough-cookie/package.json +78 -0
- package/tunnel-agent/LICENSE +55 -0
- package/tunnel-agent/README.md +4 -0
- package/tunnel-agent/index.js +244 -0
- package/tunnel-agent/package.json +22 -0
- package/tweetnacl/AUTHORS.md +28 -0
- package/tweetnacl/CHANGELOG.md +221 -0
- package/tweetnacl/LICENSE +24 -0
- package/tweetnacl/PULL_REQUEST_TEMPLATE.md +20 -0
- package/tweetnacl/README.md +459 -0
- package/tweetnacl/nacl-fast.js +2388 -0
- package/tweetnacl/nacl-fast.min.js +2 -0
- package/tweetnacl/nacl.d.ts +98 -0
- package/tweetnacl/nacl.js +1175 -0
- package/tweetnacl/nacl.min.js +1 -0
- package/tweetnacl/package.json +58 -0
- package/uri-js/LICENSE +11 -0
- package/uri-js/README.md +203 -0
- package/uri-js/dist/es5/uri.all.d.ts +59 -0
- package/uri-js/dist/es5/uri.all.js +1443 -0
- package/uri-js/dist/es5/uri.all.js.map +1 -0
- package/uri-js/dist/es5/uri.all.min.d.ts +59 -0
- package/uri-js/dist/es5/uri.all.min.js +3 -0
- package/uri-js/dist/es5/uri.all.min.js.map +1 -0
- package/uri-js/dist/esnext/index.d.ts +1 -0
- package/uri-js/dist/esnext/index.js +17 -0
- package/uri-js/dist/esnext/index.js.map +1 -0
- package/uri-js/dist/esnext/regexps-iri.d.ts +3 -0
- package/uri-js/dist/esnext/regexps-iri.js +3 -0
- package/uri-js/dist/esnext/regexps-iri.js.map +1 -0
- package/uri-js/dist/esnext/regexps-uri.d.ts +4 -0
- package/uri-js/dist/esnext/regexps-uri.js +42 -0
- package/uri-js/dist/esnext/regexps-uri.js.map +1 -0
- package/uri-js/dist/esnext/schemes/http.d.ts +3 -0
- package/uri-js/dist/esnext/schemes/http.js +28 -0
- package/uri-js/dist/esnext/schemes/http.js.map +1 -0
- package/uri-js/dist/esnext/schemes/https.d.ts +3 -0
- package/uri-js/dist/esnext/schemes/https.js +9 -0
- package/uri-js/dist/esnext/schemes/https.js.map +1 -0
- package/uri-js/dist/esnext/schemes/mailto.d.ts +12 -0
- package/uri-js/dist/esnext/schemes/mailto.js +148 -0
- package/uri-js/dist/esnext/schemes/mailto.js.map +1 -0
- package/uri-js/dist/esnext/schemes/urn-uuid.d.ts +7 -0
- package/uri-js/dist/esnext/schemes/urn-uuid.js +23 -0
- package/uri-js/dist/esnext/schemes/urn-uuid.js.map +1 -0
- package/uri-js/dist/esnext/schemes/urn.d.ts +10 -0
- package/uri-js/dist/esnext/schemes/urn.js +49 -0
- package/uri-js/dist/esnext/schemes/urn.js.map +1 -0
- package/uri-js/dist/esnext/schemes/ws.d.ts +7 -0
- package/uri-js/dist/esnext/schemes/ws.js +41 -0
- package/uri-js/dist/esnext/schemes/ws.js.map +1 -0
- package/uri-js/dist/esnext/schemes/wss.d.ts +3 -0
- package/uri-js/dist/esnext/schemes/wss.js +9 -0
- package/uri-js/dist/esnext/schemes/wss.js.map +1 -0
- package/uri-js/dist/esnext/uri.d.ts +59 -0
- package/uri-js/dist/esnext/uri.js +480 -0
- package/uri-js/dist/esnext/uri.js.map +1 -0
- package/uri-js/dist/esnext/util.d.ts +6 -0
- package/uri-js/dist/esnext/util.js +36 -0
- package/uri-js/dist/esnext/util.js.map +1 -0
- package/uri-js/package.json +77 -0
- package/uri-js/yarn.lock +2558 -0
- package/uuid/AUTHORS +5 -0
- package/uuid/CHANGELOG.md +119 -0
- package/uuid/LICENSE.md +21 -0
- package/uuid/README.md +276 -0
- package/uuid/bin/uuid +65 -0
- package/uuid/index.js +8 -0
- package/uuid/lib/bytesToUuid.js +26 -0
- package/uuid/lib/md5-browser.js +216 -0
- package/uuid/lib/md5.js +25 -0
- package/uuid/lib/rng-browser.js +34 -0
- package/uuid/lib/rng.js +8 -0
- package/uuid/lib/sha1-browser.js +89 -0
- package/uuid/lib/sha1.js +25 -0
- package/uuid/lib/v35.js +57 -0
- package/uuid/package.json +49 -0
- package/uuid/v1.js +109 -0
- package/uuid/v3.js +4 -0
- package/uuid/v4.js +29 -0
- package/uuid/v5.js +3 -0
- package/verror/CHANGES.md +28 -0
- package/verror/CONTRIBUTING.md +19 -0
- package/verror/LICENSE +19 -0
- package/verror/README.md +528 -0
- package/verror/lib/verror.js +451 -0
- package/verror/package.json +22 -0
- package/xml2js/.travis.yml +5 -0
- package/xml2js/83.coffee +6 -0
- package/xml2js/LICENSE +19 -0
- package/xml2js/README.md +248 -0
- package/xml2js/canon.xml +482 -0
- package/xml2js/lib/xml2js.js +299 -0
- package/xml2js/package.json +47 -0
- package/xml2js/text.coffee +11 -0
- package/xml2js/text.xml +485 -0
- package/youtube-search/.travis.yml +5 -0
- package/youtube-search/README.md +61 -0
- package/youtube-search/index.d.ts +77 -0
- package/youtube-search/index.js +111 -0
- package/youtube-search/package.json +29 -0
- package/youtube-search/tests/test-search.js +32 -0
- package/ytdl-core/LICENSE +21 -0
- package/ytdl-core/README.md +238 -0
- package/ytdl-core/lib/cache.js +54 -0
- package/ytdl-core/lib/format-utils.js +250 -0
- package/ytdl-core/lib/formats.js +524 -0
- package/ytdl-core/lib/index.js +214 -0
- package/ytdl-core/lib/info-extras.js +365 -0
- package/ytdl-core/lib/info.js +495 -0
- package/ytdl-core/lib/sig.js +122 -0
- package/ytdl-core/lib/url-utils.js +91 -0
- package/ytdl-core/lib/utils.js +286 -0
- package/ytdl-core/node_modules/sax/LICENSE +41 -0
- package/ytdl-core/node_modules/sax/README.md +225 -0
- package/ytdl-core/node_modules/sax/lib/sax.js +1565 -0
- package/ytdl-core/node_modules/sax/package.json +25 -0
- package/ytdl-core/package.json +61 -0
- package/ytdl-core/typings/index.d.ts +426 -0
- package/ytdl-getinfo/.travis.yml +3 -0
- package/ytdl-getinfo/README.md +77 -0
- package/ytdl-getinfo/index.js +105 -0
- package/ytdl-getinfo/package.json +33 -0
- package/ytdl-getinfo/playlist.js +50 -0
- package/ytdl-getinfo/test/test.js +68 -0
- package/ytdl-getinfo/updater.js +42 -0
- package/ytdl-getinfo/yarn.lock +533 -0
- package/ytdl-getinfo/ytdl/.gitkeep +0 -0
- package/ytdl-getinfo/ytdl/youtube-dl.exe +0 -0
package/sshpk/README.md
ADDED
@@ -0,0 +1,804 @@
|
|
1
|
+
sshpk
|
2
|
+
=========
|
3
|
+
|
4
|
+
Parse, convert, fingerprint and use SSH keys (both public and private) in pure
|
5
|
+
node -- no `ssh-keygen` or other external dependencies.
|
6
|
+
|
7
|
+
Supports RSA, DSA, ECDSA (nistp-\*) and ED25519 key types, in PEM (PKCS#1,
|
8
|
+
PKCS#8) and OpenSSH formats.
|
9
|
+
|
10
|
+
This library has been extracted from
|
11
|
+
[`node-http-signature`](https://github.com/joyent/node-http-signature)
|
12
|
+
(work by [Mark Cavage](https://github.com/mcavage) and
|
13
|
+
[Dave Eddy](https://github.com/bahamas10)) and
|
14
|
+
[`node-ssh-fingerprint`](https://github.com/bahamas10/node-ssh-fingerprint)
|
15
|
+
(work by Dave Eddy), with additions (including ECDSA support) by
|
16
|
+
[Alex Wilson](https://github.com/arekinath).
|
17
|
+
|
18
|
+
Install
|
19
|
+
-------
|
20
|
+
|
21
|
+
```
|
22
|
+
npm install sshpk
|
23
|
+
```
|
24
|
+
|
25
|
+
Examples
|
26
|
+
--------
|
27
|
+
|
28
|
+
```js
|
29
|
+
var sshpk = require('sshpk');
|
30
|
+
|
31
|
+
var fs = require('fs');
|
32
|
+
|
33
|
+
/* Read in an OpenSSH-format public key */
|
34
|
+
var keyPub = fs.readFileSync('id_rsa.pub');
|
35
|
+
var key = sshpk.parseKey(keyPub, 'ssh');
|
36
|
+
|
37
|
+
/* Get metadata about the key */
|
38
|
+
console.log('type => %s', key.type);
|
39
|
+
console.log('size => %d bits', key.size);
|
40
|
+
console.log('comment => %s', key.comment);
|
41
|
+
|
42
|
+
/* Compute key fingerprints, in new OpenSSH (>6.7) format, and old MD5 */
|
43
|
+
console.log('fingerprint => %s', key.fingerprint().toString());
|
44
|
+
console.log('old-style fingerprint => %s', key.fingerprint('md5').toString());
|
45
|
+
```
|
46
|
+
|
47
|
+
Example output:
|
48
|
+
|
49
|
+
```
|
50
|
+
type => rsa
|
51
|
+
size => 2048 bits
|
52
|
+
comment => foo@foo.com
|
53
|
+
fingerprint => SHA256:PYC9kPVC6J873CSIbfp0LwYeczP/W4ffObNCuDJ1u5w
|
54
|
+
old-style fingerprint => a0:c8:ad:6c:32:9a:32:fa:59:cc:a9:8c:0a:0d:6e:bd
|
55
|
+
```
|
56
|
+
|
57
|
+
More examples: converting between formats:
|
58
|
+
|
59
|
+
```js
|
60
|
+
/* Read in a PEM public key */
|
61
|
+
var keyPem = fs.readFileSync('id_rsa.pem');
|
62
|
+
var key = sshpk.parseKey(keyPem, 'pem');
|
63
|
+
|
64
|
+
/* Convert to PEM PKCS#8 public key format */
|
65
|
+
var pemBuf = key.toBuffer('pkcs8');
|
66
|
+
|
67
|
+
/* Convert to SSH public key format (and return as a string) */
|
68
|
+
var sshKey = key.toString('ssh');
|
69
|
+
```
|
70
|
+
|
71
|
+
Signing and verifying:
|
72
|
+
|
73
|
+
```js
|
74
|
+
/* Read in an OpenSSH/PEM *private* key */
|
75
|
+
var keyPriv = fs.readFileSync('id_ecdsa');
|
76
|
+
var key = sshpk.parsePrivateKey(keyPriv, 'pem');
|
77
|
+
|
78
|
+
var data = 'some data';
|
79
|
+
|
80
|
+
/* Sign some data with the key */
|
81
|
+
var s = key.createSign('sha1');
|
82
|
+
s.update(data);
|
83
|
+
var signature = s.sign();
|
84
|
+
|
85
|
+
/* Now load the public key (could also use just key.toPublic()) */
|
86
|
+
var keyPub = fs.readFileSync('id_ecdsa.pub');
|
87
|
+
key = sshpk.parseKey(keyPub, 'ssh');
|
88
|
+
|
89
|
+
/* Make a crypto.Verifier with this key */
|
90
|
+
var v = key.createVerify('sha1');
|
91
|
+
v.update(data);
|
92
|
+
var valid = v.verify(signature);
|
93
|
+
/* => true! */
|
94
|
+
```
|
95
|
+
|
96
|
+
Matching fingerprints with keys:
|
97
|
+
|
98
|
+
```js
|
99
|
+
var fp = sshpk.parseFingerprint('SHA256:PYC9kPVC6J873CSIbfp0LwYeczP/W4ffObNCuDJ1u5w');
|
100
|
+
|
101
|
+
var keys = [sshpk.parseKey(...), sshpk.parseKey(...), ...];
|
102
|
+
|
103
|
+
keys.forEach(function (key) {
|
104
|
+
if (fp.matches(key))
|
105
|
+
console.log('found it!');
|
106
|
+
});
|
107
|
+
```
|
108
|
+
|
109
|
+
Usage
|
110
|
+
-----
|
111
|
+
|
112
|
+
## Public keys
|
113
|
+
|
114
|
+
### `parseKey(data[, format = 'auto'[, options]])`
|
115
|
+
|
116
|
+
Parses a key from a given data format and returns a new `Key` object.
|
117
|
+
|
118
|
+
Parameters
|
119
|
+
|
120
|
+
- `data` -- Either a Buffer or String, containing the key
|
121
|
+
- `format` -- String name of format to use, valid options are:
|
122
|
+
- `auto`: choose automatically from all below
|
123
|
+
- `pem`: supports both PKCS#1 and PKCS#8
|
124
|
+
- `ssh`: standard OpenSSH format,
|
125
|
+
- `pkcs1`, `pkcs8`: variants of `pem`
|
126
|
+
- `rfc4253`: raw OpenSSH wire format
|
127
|
+
- `openssh`: new post-OpenSSH 6.5 internal format, produced by
|
128
|
+
`ssh-keygen -o`
|
129
|
+
- `dnssec`: `.key` file format output by `dnssec-keygen` etc
|
130
|
+
- `putty`: the PuTTY `.ppk` file format (supports truncated variant without
|
131
|
+
all the lines from `Private-Lines:` onwards)
|
132
|
+
- `options` -- Optional Object, extra options, with keys:
|
133
|
+
- `filename` -- Optional String, name for the key being parsed
|
134
|
+
(eg. the filename that was opened). Used to generate
|
135
|
+
Error messages
|
136
|
+
- `passphrase` -- Optional String, encryption passphrase used to decrypt an
|
137
|
+
encrypted PEM file
|
138
|
+
|
139
|
+
### `Key.isKey(obj)`
|
140
|
+
|
141
|
+
Returns `true` if the given object is a valid `Key` object created by a version
|
142
|
+
of `sshpk` compatible with this one.
|
143
|
+
|
144
|
+
Parameters
|
145
|
+
|
146
|
+
- `obj` -- Object to identify
|
147
|
+
|
148
|
+
### `Key#type`
|
149
|
+
|
150
|
+
String, the type of key. Valid options are `rsa`, `dsa`, `ecdsa`.
|
151
|
+
|
152
|
+
### `Key#size`
|
153
|
+
|
154
|
+
Integer, "size" of the key in bits. For RSA/DSA this is the size of the modulus;
|
155
|
+
for ECDSA this is the bit size of the curve in use.
|
156
|
+
|
157
|
+
### `Key#comment`
|
158
|
+
|
159
|
+
Optional string, a key comment used by some formats (eg the `ssh` format).
|
160
|
+
|
161
|
+
### `Key#curve`
|
162
|
+
|
163
|
+
Only present if `this.type === 'ecdsa'`, string containing the name of the
|
164
|
+
named curve used with this key. Possible values include `nistp256`, `nistp384`
|
165
|
+
and `nistp521`.
|
166
|
+
|
167
|
+
### `Key#toBuffer([format = 'ssh'])`
|
168
|
+
|
169
|
+
Convert the key into a given data format and return the serialized key as
|
170
|
+
a Buffer.
|
171
|
+
|
172
|
+
Parameters
|
173
|
+
|
174
|
+
- `format` -- String name of format to use, for valid options see `parseKey()`
|
175
|
+
|
176
|
+
### `Key#toString([format = 'ssh])`
|
177
|
+
|
178
|
+
Same as `this.toBuffer(format).toString()`.
|
179
|
+
|
180
|
+
### `Key#fingerprint([algorithm = 'sha256'[, hashType = 'ssh']])`
|
181
|
+
|
182
|
+
Creates a new `Fingerprint` object representing this Key's fingerprint.
|
183
|
+
|
184
|
+
Parameters
|
185
|
+
|
186
|
+
- `algorithm` -- String name of hash algorithm to use, valid options are `md5`,
|
187
|
+
`sha1`, `sha256`, `sha384`, `sha512`
|
188
|
+
- `hashType` -- String name of fingerprint hash type to use, valid options are
|
189
|
+
`ssh` (the type of fingerprint used by OpenSSH, e.g. in
|
190
|
+
`ssh-keygen`), `spki` (used by HPKP, some OpenSSL applications)
|
191
|
+
|
192
|
+
### `Key#createVerify([hashAlgorithm])`
|
193
|
+
|
194
|
+
Creates a `crypto.Verifier` specialized to use this Key (and the correct public
|
195
|
+
key algorithm to match it). The returned Verifier has the same API as a regular
|
196
|
+
one, except that the `verify()` function takes only the target signature as an
|
197
|
+
argument.
|
198
|
+
|
199
|
+
Parameters
|
200
|
+
|
201
|
+
- `hashAlgorithm` -- optional String name of hash algorithm to use, any
|
202
|
+
supported by OpenSSL are valid, usually including
|
203
|
+
`sha1`, `sha256`.
|
204
|
+
|
205
|
+
`v.verify(signature[, format])` Parameters
|
206
|
+
|
207
|
+
- `signature` -- either a Signature object, or a Buffer or String
|
208
|
+
- `format` -- optional String, name of format to interpret given String with.
|
209
|
+
Not valid if `signature` is a Signature or Buffer.
|
210
|
+
|
211
|
+
### `Key#createDiffieHellman()`
|
212
|
+
### `Key#createDH()`
|
213
|
+
|
214
|
+
Creates a Diffie-Hellman key exchange object initialized with this key and all
|
215
|
+
necessary parameters. This has the same API as a `crypto.DiffieHellman`
|
216
|
+
instance, except that functions take `Key` and `PrivateKey` objects as
|
217
|
+
arguments, and return them where indicated for.
|
218
|
+
|
219
|
+
This is only valid for keys belonging to a cryptosystem that supports DHE
|
220
|
+
or a close analogue (i.e. `dsa`, `ecdsa` and `curve25519` keys). An attempt
|
221
|
+
to call this function on other keys will yield an `Error`.
|
222
|
+
|
223
|
+
## Private keys
|
224
|
+
|
225
|
+
### `parsePrivateKey(data[, format = 'auto'[, options]])`
|
226
|
+
|
227
|
+
Parses a private key from a given data format and returns a new
|
228
|
+
`PrivateKey` object.
|
229
|
+
|
230
|
+
Parameters
|
231
|
+
|
232
|
+
- `data` -- Either a Buffer or String, containing the key
|
233
|
+
- `format` -- String name of format to use, valid options are:
|
234
|
+
- `auto`: choose automatically from all below
|
235
|
+
- `pem`: supports both PKCS#1 and PKCS#8
|
236
|
+
- `ssh`, `openssh`: new post-OpenSSH 6.5 internal format, produced by
|
237
|
+
`ssh-keygen -o`
|
238
|
+
- `pkcs1`, `pkcs8`: variants of `pem`
|
239
|
+
- `rfc4253`: raw OpenSSH wire format
|
240
|
+
- `dnssec`: `.private` format output by `dnssec-keygen` etc.
|
241
|
+
- `options` -- Optional Object, extra options, with keys:
|
242
|
+
- `filename` -- Optional String, name for the key being parsed
|
243
|
+
(eg. the filename that was opened). Used to generate
|
244
|
+
Error messages
|
245
|
+
- `passphrase` -- Optional String, encryption passphrase used to decrypt an
|
246
|
+
encrypted PEM file
|
247
|
+
|
248
|
+
### `generatePrivateKey(type[, options])`
|
249
|
+
|
250
|
+
Generates a new private key of a certain key type, from random data.
|
251
|
+
|
252
|
+
Parameters
|
253
|
+
|
254
|
+
- `type` -- String, type of key to generate. Currently supported are `'ecdsa'`
|
255
|
+
and `'ed25519'`
|
256
|
+
- `options` -- optional Object, with keys:
|
257
|
+
- `curve` -- optional String, for `'ecdsa'` keys, specifies the curve to use.
|
258
|
+
If ECDSA is specified and this option is not given, defaults to
|
259
|
+
using `'nistp256'`.
|
260
|
+
|
261
|
+
### `PrivateKey.isPrivateKey(obj)`
|
262
|
+
|
263
|
+
Returns `true` if the given object is a valid `PrivateKey` object created by a
|
264
|
+
version of `sshpk` compatible with this one.
|
265
|
+
|
266
|
+
Parameters
|
267
|
+
|
268
|
+
- `obj` -- Object to identify
|
269
|
+
|
270
|
+
### `PrivateKey#type`
|
271
|
+
|
272
|
+
String, the type of key. Valid options are `rsa`, `dsa`, `ecdsa`.
|
273
|
+
|
274
|
+
### `PrivateKey#size`
|
275
|
+
|
276
|
+
Integer, "size" of the key in bits. For RSA/DSA this is the size of the modulus;
|
277
|
+
for ECDSA this is the bit size of the curve in use.
|
278
|
+
|
279
|
+
### `PrivateKey#curve`
|
280
|
+
|
281
|
+
Only present if `this.type === 'ecdsa'`, string containing the name of the
|
282
|
+
named curve used with this key. Possible values include `nistp256`, `nistp384`
|
283
|
+
and `nistp521`.
|
284
|
+
|
285
|
+
### `PrivateKey#toBuffer([format = 'pkcs1'])`
|
286
|
+
|
287
|
+
Convert the key into a given data format and return the serialized key as
|
288
|
+
a Buffer.
|
289
|
+
|
290
|
+
Parameters
|
291
|
+
|
292
|
+
- `format` -- String name of format to use, valid options are listed under
|
293
|
+
`parsePrivateKey`. Note that ED25519 keys default to `openssh`
|
294
|
+
format instead (as they have no `pkcs1` representation).
|
295
|
+
|
296
|
+
### `PrivateKey#toString([format = 'pkcs1'])`
|
297
|
+
|
298
|
+
Same as `this.toBuffer(format).toString()`.
|
299
|
+
|
300
|
+
### `PrivateKey#toPublic()`
|
301
|
+
|
302
|
+
Extract just the public part of this private key, and return it as a `Key`
|
303
|
+
object.
|
304
|
+
|
305
|
+
### `PrivateKey#fingerprint([algorithm = 'sha256'])`
|
306
|
+
|
307
|
+
Same as `this.toPublic().fingerprint()`.
|
308
|
+
|
309
|
+
### `PrivateKey#createVerify([hashAlgorithm])`
|
310
|
+
|
311
|
+
Same as `this.toPublic().createVerify()`.
|
312
|
+
|
313
|
+
### `PrivateKey#createSign([hashAlgorithm])`
|
314
|
+
|
315
|
+
Creates a `crypto.Sign` specialized to use this PrivateKey (and the correct
|
316
|
+
key algorithm to match it). The returned Signer has the same API as a regular
|
317
|
+
one, except that the `sign()` function takes no arguments, and returns a
|
318
|
+
`Signature` object.
|
319
|
+
|
320
|
+
Parameters
|
321
|
+
|
322
|
+
- `hashAlgorithm` -- optional String name of hash algorithm to use, any
|
323
|
+
supported by OpenSSL are valid, usually including
|
324
|
+
`sha1`, `sha256`.
|
325
|
+
|
326
|
+
`v.sign()` Parameters
|
327
|
+
|
328
|
+
- none
|
329
|
+
|
330
|
+
### `PrivateKey#derive(newType)`
|
331
|
+
|
332
|
+
Derives a related key of type `newType` from this key. Currently this is
|
333
|
+
only supported to change between `ed25519` and `curve25519` keys which are
|
334
|
+
stored with the same private key (but usually distinct public keys in order
|
335
|
+
to avoid degenerate keys that lead to a weak Diffie-Hellman exchange).
|
336
|
+
|
337
|
+
Parameters
|
338
|
+
|
339
|
+
- `newType` -- String, type of key to derive, either `ed25519` or `curve25519`
|
340
|
+
|
341
|
+
## Fingerprints
|
342
|
+
|
343
|
+
### `parseFingerprint(fingerprint[, options])`
|
344
|
+
|
345
|
+
Pre-parses a fingerprint, creating a `Fingerprint` object that can be used to
|
346
|
+
quickly locate a key by using the `Fingerprint#matches` function.
|
347
|
+
|
348
|
+
Parameters
|
349
|
+
|
350
|
+
- `fingerprint` -- String, the fingerprint value, in any supported format
|
351
|
+
- `options` -- Optional Object, with properties:
|
352
|
+
- `algorithms` -- Array of strings, names of hash algorithms to limit
|
353
|
+
support to. If `fingerprint` uses a hash algorithm not on
|
354
|
+
this list, throws `InvalidAlgorithmError`.
|
355
|
+
- `hashType` -- String, the type of hash the fingerprint uses, either `ssh`
|
356
|
+
or `spki` (normally auto-detected based on the format, but
|
357
|
+
can be overridden)
|
358
|
+
- `type` -- String, the entity this fingerprint identifies, either `key` or
|
359
|
+
`certificate`
|
360
|
+
|
361
|
+
### `Fingerprint.isFingerprint(obj)`
|
362
|
+
|
363
|
+
Returns `true` if the given object is a valid `Fingerprint` object created by a
|
364
|
+
version of `sshpk` compatible with this one.
|
365
|
+
|
366
|
+
Parameters
|
367
|
+
|
368
|
+
- `obj` -- Object to identify
|
369
|
+
|
370
|
+
### `Fingerprint#toString([format])`
|
371
|
+
|
372
|
+
Returns a fingerprint as a string, in the given format.
|
373
|
+
|
374
|
+
Parameters
|
375
|
+
|
376
|
+
- `format` -- Optional String, format to use, valid options are `hex` and
|
377
|
+
`base64`. If this `Fingerprint` uses the `md5` algorithm, the
|
378
|
+
default format is `hex`. Otherwise, the default is `base64`.
|
379
|
+
|
380
|
+
### `Fingerprint#matches(keyOrCertificate)`
|
381
|
+
|
382
|
+
Verifies whether or not this `Fingerprint` matches a given `Key` or
|
383
|
+
`Certificate`. This function uses double-hashing to avoid leaking timing
|
384
|
+
information. Returns a boolean.
|
385
|
+
|
386
|
+
Note that a `Key`-type Fingerprint will always return `false` if asked to match
|
387
|
+
a `Certificate` and vice versa.
|
388
|
+
|
389
|
+
Parameters
|
390
|
+
|
391
|
+
- `keyOrCertificate` -- a `Key` object or `Certificate` object, the entity to
|
392
|
+
match this fingerprint against
|
393
|
+
|
394
|
+
## Signatures
|
395
|
+
|
396
|
+
### `parseSignature(signature, algorithm, format)`
|
397
|
+
|
398
|
+
Parses a signature in a given format, creating a `Signature` object. Useful
|
399
|
+
for converting between the SSH and ASN.1 (PKCS/OpenSSL) signature formats, and
|
400
|
+
also returned as output from `PrivateKey#createSign().sign()`.
|
401
|
+
|
402
|
+
A Signature object can also be passed to a verifier produced by
|
403
|
+
`Key#createVerify()` and it will automatically be converted internally into the
|
404
|
+
correct format for verification.
|
405
|
+
|
406
|
+
Parameters
|
407
|
+
|
408
|
+
- `signature` -- a Buffer (binary) or String (base64), data of the actual
|
409
|
+
signature in the given format
|
410
|
+
- `algorithm` -- a String, name of the algorithm to be used, possible values
|
411
|
+
are `rsa`, `dsa`, `ecdsa`
|
412
|
+
- `format` -- a String, either `asn1` or `ssh`
|
413
|
+
|
414
|
+
### `Signature.isSignature(obj)`
|
415
|
+
|
416
|
+
Returns `true` if the given object is a valid `Signature` object created by a
|
417
|
+
version of `sshpk` compatible with this one.
|
418
|
+
|
419
|
+
Parameters
|
420
|
+
|
421
|
+
- `obj` -- Object to identify
|
422
|
+
|
423
|
+
### `Signature#toBuffer([format = 'asn1'])`
|
424
|
+
|
425
|
+
Converts a Signature to the given format and returns it as a Buffer.
|
426
|
+
|
427
|
+
Parameters
|
428
|
+
|
429
|
+
- `format` -- a String, either `asn1` or `ssh`
|
430
|
+
|
431
|
+
### `Signature#toString([format = 'asn1'])`
|
432
|
+
|
433
|
+
Same as `this.toBuffer(format).toString('base64')`.
|
434
|
+
|
435
|
+
## Certificates
|
436
|
+
|
437
|
+
`sshpk` includes basic support for parsing certificates in X.509 (PEM) format
|
438
|
+
and the OpenSSH certificate format. This feature is intended to be used mainly
|
439
|
+
to access basic metadata about certificates, extract public keys from them, and
|
440
|
+
also to generate simple self-signed certificates from an existing key.
|
441
|
+
|
442
|
+
Notably, there is no implementation of CA chain-of-trust verification, and only
|
443
|
+
very minimal support for key usage restrictions. Please do the security world
|
444
|
+
a favour, and DO NOT use this code for certificate verification in the
|
445
|
+
traditional X.509 CA chain style.
|
446
|
+
|
447
|
+
### `parseCertificate(data, format)`
|
448
|
+
|
449
|
+
Parameters
|
450
|
+
|
451
|
+
- `data` -- a Buffer or String
|
452
|
+
- `format` -- a String, format to use, one of `'openssh'`, `'pem'` (X.509 in a
|
453
|
+
PEM wrapper), or `'x509'` (raw DER encoded)
|
454
|
+
|
455
|
+
### `createSelfSignedCertificate(subject, privateKey[, options])`
|
456
|
+
|
457
|
+
Parameters
|
458
|
+
|
459
|
+
- `subject` -- an Identity, the subject of the certificate
|
460
|
+
- `privateKey` -- a PrivateKey, the key of the subject: will be used both to be
|
461
|
+
placed in the certificate and also to sign it (since this is
|
462
|
+
a self-signed certificate)
|
463
|
+
- `options` -- optional Object, with keys:
|
464
|
+
- `lifetime` -- optional Number, lifetime of the certificate from now in
|
465
|
+
seconds
|
466
|
+
- `validFrom`, `validUntil` -- optional Dates, beginning and end of
|
467
|
+
certificate validity period. If given
|
468
|
+
`lifetime` will be ignored
|
469
|
+
- `serial` -- optional Buffer, the serial number of the certificate
|
470
|
+
- `purposes` -- optional Array of String, X.509 key usage restrictions
|
471
|
+
|
472
|
+
### `createCertificate(subject, key, issuer, issuerKey[, options])`
|
473
|
+
|
474
|
+
Parameters
|
475
|
+
|
476
|
+
- `subject` -- an Identity, the subject of the certificate
|
477
|
+
- `key` -- a Key, the public key of the subject
|
478
|
+
- `issuer` -- an Identity, the issuer of the certificate who will sign it
|
479
|
+
- `issuerKey` -- a PrivateKey, the issuer's private key for signing
|
480
|
+
- `options` -- optional Object, with keys:
|
481
|
+
- `lifetime` -- optional Number, lifetime of the certificate from now in
|
482
|
+
seconds
|
483
|
+
- `validFrom`, `validUntil` -- optional Dates, beginning and end of
|
484
|
+
certificate validity period. If given
|
485
|
+
`lifetime` will be ignored
|
486
|
+
- `serial` -- optional Buffer, the serial number of the certificate
|
487
|
+
- `purposes` -- optional Array of String, X.509 key usage restrictions
|
488
|
+
|
489
|
+
### `Certificate#subjects`
|
490
|
+
|
491
|
+
Array of `Identity` instances describing the subject of this certificate.
|
492
|
+
|
493
|
+
### `Certificate#issuer`
|
494
|
+
|
495
|
+
The `Identity` of the Certificate's issuer (signer).
|
496
|
+
|
497
|
+
### `Certificate#subjectKey`
|
498
|
+
|
499
|
+
The public key of the subject of the certificate, as a `Key` instance.
|
500
|
+
|
501
|
+
### `Certificate#issuerKey`
|
502
|
+
|
503
|
+
The public key of the signing issuer of this certificate, as a `Key` instance.
|
504
|
+
May be `undefined` if the issuer's key is unknown (e.g. on an X509 certificate).
|
505
|
+
|
506
|
+
### `Certificate#serial`
|
507
|
+
|
508
|
+
The serial number of the certificate. As this is normally a 64-bit or wider
|
509
|
+
integer, it is returned as a Buffer.
|
510
|
+
|
511
|
+
### `Certificate#purposes`
|
512
|
+
|
513
|
+
Array of Strings indicating the X.509 key usage purposes that this certificate
|
514
|
+
is valid for. The possible strings at the moment are:
|
515
|
+
|
516
|
+
* `'signature'` -- key can be used for digital signatures
|
517
|
+
* `'identity'` -- key can be used to attest about the identity of the signer
|
518
|
+
(X.509 calls this `nonRepudiation`)
|
519
|
+
* `'codeSigning'` -- key can be used to sign executable code
|
520
|
+
* `'keyEncryption'` -- key can be used to encrypt other keys
|
521
|
+
* `'encryption'` -- key can be used to encrypt data (only applies for RSA)
|
522
|
+
* `'keyAgreement'` -- key can be used for key exchange protocols such as
|
523
|
+
Diffie-Hellman
|
524
|
+
* `'ca'` -- key can be used to sign other certificates (is a Certificate
|
525
|
+
Authority)
|
526
|
+
* `'crl'` -- key can be used to sign Certificate Revocation Lists (CRLs)
|
527
|
+
|
528
|
+
### `Certificate#getExtension(nameOrOid)`
|
529
|
+
|
530
|
+
Retrieves information about a certificate extension, if present, or returns
|
531
|
+
`undefined` if not. The string argument `nameOrOid` should be either the OID
|
532
|
+
(for X509 extensions) or the name (for OpenSSH extensions) of the extension
|
533
|
+
to retrieve.
|
534
|
+
|
535
|
+
The object returned will have the following properties:
|
536
|
+
|
537
|
+
* `format` -- String, set to either `'x509'` or `'openssh'`
|
538
|
+
* `name` or `oid` -- String, only one set based on value of `format`
|
539
|
+
* `data` -- Buffer, the raw data inside the extension
|
540
|
+
|
541
|
+
### `Certificate#getExtensions()`
|
542
|
+
|
543
|
+
Returns an Array of all present certificate extensions, in the same manner and
|
544
|
+
format as `getExtension()`.
|
545
|
+
|
546
|
+
### `Certificate#isExpired([when])`
|
547
|
+
|
548
|
+
Tests whether the Certificate is currently expired (i.e. the `validFrom` and
|
549
|
+
`validUntil` dates specify a range of time that does not include the current
|
550
|
+
time).
|
551
|
+
|
552
|
+
Parameters
|
553
|
+
|
554
|
+
- `when` -- optional Date, if specified, tests whether the Certificate was or
|
555
|
+
will be expired at the specified time instead of now
|
556
|
+
|
557
|
+
Returns a Boolean.
|
558
|
+
|
559
|
+
### `Certificate#isSignedByKey(key)`
|
560
|
+
|
561
|
+
Tests whether the Certificate was validly signed by the given (public) Key.
|
562
|
+
|
563
|
+
Parameters
|
564
|
+
|
565
|
+
- `key` -- a Key instance
|
566
|
+
|
567
|
+
Returns a Boolean.
|
568
|
+
|
569
|
+
### `Certificate#isSignedBy(certificate)`
|
570
|
+
|
571
|
+
Tests whether this Certificate was validly signed by the subject of the given
|
572
|
+
certificate. Also tests that the issuer Identity of this Certificate and the
|
573
|
+
subject Identity of the other Certificate are equivalent.
|
574
|
+
|
575
|
+
Parameters
|
576
|
+
|
577
|
+
- `certificate` -- another Certificate instance
|
578
|
+
|
579
|
+
Returns a Boolean.
|
580
|
+
|
581
|
+
### `Certificate#fingerprint([hashAlgo])`
|
582
|
+
|
583
|
+
Returns the X509-style fingerprint of the entire certificate (as a Fingerprint
|
584
|
+
instance). This matches what a web-browser or similar would display as the
|
585
|
+
certificate fingerprint and should not be confused with the fingerprint of the
|
586
|
+
subject's public key.
|
587
|
+
|
588
|
+
Parameters
|
589
|
+
|
590
|
+
- `hashAlgo` -- an optional String, any hash function name
|
591
|
+
|
592
|
+
### `Certificate#toBuffer([format])`
|
593
|
+
|
594
|
+
Serializes the Certificate to a Buffer and returns it.
|
595
|
+
|
596
|
+
Parameters
|
597
|
+
|
598
|
+
- `format` -- an optional String, output format, one of `'openssh'`, `'pem'` or
|
599
|
+
`'x509'`. Defaults to `'x509'`.
|
600
|
+
|
601
|
+
Returns a Buffer.
|
602
|
+
|
603
|
+
### `Certificate#toString([format])`
|
604
|
+
|
605
|
+
- `format` -- an optional String, output format, one of `'openssh'`, `'pem'` or
|
606
|
+
`'x509'`. Defaults to `'pem'`.
|
607
|
+
|
608
|
+
Returns a String.
|
609
|
+
|
610
|
+
## Certificate identities
|
611
|
+
|
612
|
+
### `identityForHost(hostname)`
|
613
|
+
|
614
|
+
Constructs a host-type Identity for a given hostname.
|
615
|
+
|
616
|
+
Parameters
|
617
|
+
|
618
|
+
- `hostname` -- the fully qualified DNS name of the host
|
619
|
+
|
620
|
+
Returns an Identity instance.
|
621
|
+
|
622
|
+
### `identityForUser(uid)`
|
623
|
+
|
624
|
+
Constructs a user-type Identity for a given UID.
|
625
|
+
|
626
|
+
Parameters
|
627
|
+
|
628
|
+
- `uid` -- a String, user identifier (login name)
|
629
|
+
|
630
|
+
Returns an Identity instance.
|
631
|
+
|
632
|
+
### `identityForEmail(email)`
|
633
|
+
|
634
|
+
Constructs an email-type Identity for a given email address.
|
635
|
+
|
636
|
+
Parameters
|
637
|
+
|
638
|
+
- `email` -- a String, email address
|
639
|
+
|
640
|
+
Returns an Identity instance.
|
641
|
+
|
642
|
+
### `identityFromDN(dn)`
|
643
|
+
|
644
|
+
Parses an LDAP-style DN string (e.g. `'CN=foo, C=US'`) and turns it into an
|
645
|
+
Identity instance.
|
646
|
+
|
647
|
+
Parameters
|
648
|
+
|
649
|
+
- `dn` -- a String
|
650
|
+
|
651
|
+
Returns an Identity instance.
|
652
|
+
|
653
|
+
### `identityFromArray(arr)`
|
654
|
+
|
655
|
+
Constructs an Identity from an array of DN components (see `Identity#toArray()`
|
656
|
+
for the format).
|
657
|
+
|
658
|
+
Parameters
|
659
|
+
|
660
|
+
- `arr` -- an Array of Objects, DN components with `name` and `value`
|
661
|
+
|
662
|
+
Returns an Identity instance.
|
663
|
+
|
664
|
+
|
665
|
+
Supported attributes in DNs:
|
666
|
+
|
667
|
+
| Attribute name | OID |
|
668
|
+
| -------------- | --- |
|
669
|
+
| `cn` | `2.5.4.3` |
|
670
|
+
| `o` | `2.5.4.10` |
|
671
|
+
| `ou` | `2.5.4.11` |
|
672
|
+
| `l` | `2.5.4.7` |
|
673
|
+
| `s` | `2.5.4.8` |
|
674
|
+
| `c` | `2.5.4.6` |
|
675
|
+
| `sn` | `2.5.4.4` |
|
676
|
+
| `postalCode` | `2.5.4.17` |
|
677
|
+
| `serialNumber` | `2.5.4.5` |
|
678
|
+
| `street` | `2.5.4.9` |
|
679
|
+
| `x500UniqueIdentifier` | `2.5.4.45` |
|
680
|
+
| `role` | `2.5.4.72` |
|
681
|
+
| `telephoneNumber` | `2.5.4.20` |
|
682
|
+
| `description` | `2.5.4.13` |
|
683
|
+
| `dc` | `0.9.2342.19200300.100.1.25` |
|
684
|
+
| `uid` | `0.9.2342.19200300.100.1.1` |
|
685
|
+
| `mail` | `0.9.2342.19200300.100.1.3` |
|
686
|
+
| `title` | `2.5.4.12` |
|
687
|
+
| `gn` | `2.5.4.42` |
|
688
|
+
| `initials` | `2.5.4.43` |
|
689
|
+
| `pseudonym` | `2.5.4.65` |
|
690
|
+
|
691
|
+
### `Identity#toString()`
|
692
|
+
|
693
|
+
Returns the identity as an LDAP-style DN string.
|
694
|
+
e.g. `'CN=foo, O=bar corp, C=us'`
|
695
|
+
|
696
|
+
### `Identity#type`
|
697
|
+
|
698
|
+
The type of identity. One of `'host'`, `'user'`, `'email'` or `'unknown'`
|
699
|
+
|
700
|
+
### `Identity#hostname`
|
701
|
+
### `Identity#uid`
|
702
|
+
### `Identity#email`
|
703
|
+
|
704
|
+
Set when `type` is `'host'`, `'user'`, or `'email'`, respectively. Strings.
|
705
|
+
|
706
|
+
### `Identity#cn`
|
707
|
+
|
708
|
+
The value of the first `CN=` in the DN, if any. It's probably better to use
|
709
|
+
the `#get()` method instead of this property.
|
710
|
+
|
711
|
+
### `Identity#get(name[, asArray])`
|
712
|
+
|
713
|
+
Returns the value of a named attribute in the Identity DN. If there is no
|
714
|
+
attribute of the given name, returns `undefined`. If multiple components
|
715
|
+
of the DN contain an attribute of this name, an exception is thrown unless
|
716
|
+
the `asArray` argument is given as `true` -- then they will be returned as
|
717
|
+
an Array in the same order they appear in the DN.
|
718
|
+
|
719
|
+
Parameters
|
720
|
+
|
721
|
+
- `name` -- a String
|
722
|
+
- `asArray` -- an optional Boolean
|
723
|
+
|
724
|
+
### `Identity#toArray()`
|
725
|
+
|
726
|
+
Returns the Identity as an Array of DN component objects. This looks like:
|
727
|
+
|
728
|
+
```js
|
729
|
+
[ {
|
730
|
+
"name": "cn",
|
731
|
+
"value": "Joe Bloggs"
|
732
|
+
},
|
733
|
+
{
|
734
|
+
"name": "o",
|
735
|
+
"value": "Organisation Ltd"
|
736
|
+
} ]
|
737
|
+
```
|
738
|
+
|
739
|
+
Each object has a `name` and a `value` property. The returned objects may be
|
740
|
+
safely modified.
|
741
|
+
|
742
|
+
Errors
|
743
|
+
------
|
744
|
+
|
745
|
+
### `InvalidAlgorithmError`
|
746
|
+
|
747
|
+
The specified algorithm is not valid, either because it is not supported, or
|
748
|
+
because it was not included on a list of allowed algorithms.
|
749
|
+
|
750
|
+
Thrown by `Fingerprint.parse`, `Key#fingerprint`.
|
751
|
+
|
752
|
+
Properties
|
753
|
+
|
754
|
+
- `algorithm` -- the algorithm that could not be validated
|
755
|
+
|
756
|
+
### `FingerprintFormatError`
|
757
|
+
|
758
|
+
The fingerprint string given could not be parsed as a supported fingerprint
|
759
|
+
format, or the specified fingerprint format is invalid.
|
760
|
+
|
761
|
+
Thrown by `Fingerprint.parse`, `Fingerprint#toString`.
|
762
|
+
|
763
|
+
Properties
|
764
|
+
|
765
|
+
- `fingerprint` -- if caused by a fingerprint, the string value given
|
766
|
+
- `format` -- if caused by an invalid format specification, the string value given
|
767
|
+
|
768
|
+
### `KeyParseError`
|
769
|
+
|
770
|
+
The key data given could not be parsed as a valid key.
|
771
|
+
|
772
|
+
Properties
|
773
|
+
|
774
|
+
- `keyName` -- `filename` that was given to `parseKey`
|
775
|
+
- `format` -- the `format` that was trying to parse the key (see `parseKey`)
|
776
|
+
- `innerErr` -- the inner Error thrown by the format parser
|
777
|
+
|
778
|
+
### `KeyEncryptedError`
|
779
|
+
|
780
|
+
The key is encrypted with a symmetric key (ie, it is password protected). The
|
781
|
+
parsing operation would succeed if it was given the `passphrase` option.
|
782
|
+
|
783
|
+
Properties
|
784
|
+
|
785
|
+
- `keyName` -- `filename` that was given to `parseKey`
|
786
|
+
- `format` -- the `format` that was trying to parse the key (currently can only
|
787
|
+
be `"pem"`)
|
788
|
+
|
789
|
+
### `CertificateParseError`
|
790
|
+
|
791
|
+
The certificate data given could not be parsed as a valid certificate.
|
792
|
+
|
793
|
+
Properties
|
794
|
+
|
795
|
+
- `certName` -- `filename` that was given to `parseCertificate`
|
796
|
+
- `format` -- the `format` that was trying to parse the key
|
797
|
+
(see `parseCertificate`)
|
798
|
+
- `innerErr` -- the inner Error thrown by the format parser
|
799
|
+
|
800
|
+
Friends of sshpk
|
801
|
+
----------------
|
802
|
+
|
803
|
+
* [`sshpk-agent`](https://github.com/arekinath/node-sshpk-agent) is a library
|
804
|
+
for speaking the `ssh-agent` protocol from node.js, which uses `sshpk`
|