├── .babelrc ├── .github ├── dependabot.yml └── workflows │ ├── ci.yml │ └── codeql.yml ├── .gitignore ├── .node-version ├── .npmignore ├── LICENSE.md ├── README.md ├── binding.gyp ├── docker ├── arm64-cross-compile │ └── Dockerfile ├── armv7l-cross-compile │ └── Dockerfile └── i386 │ └── Dockerfile ├── keytar.d.ts ├── lib └── keytar.js ├── package.json ├── script ├── cibuild ├── download-node-lib-win-arm64.ps1 └── upload.js ├── spec └── keytar-spec.js └── src ├── async.cc ├── async.h ├── credentials.h ├── keytar.h ├── keytar_mac.cc ├── keytar_posix.cc ├── keytar_win.cc └── main.cc /.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom/node-keytar/HEAD/.babelrc -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom/node-keytar/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom/node-keytar/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.github/workflows/codeql.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom/node-keytar/HEAD/.github/workflows/codeql.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom/node-keytar/HEAD/.gitignore -------------------------------------------------------------------------------- /.node-version: -------------------------------------------------------------------------------- 1 | 14.15.1 2 | -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom/node-keytar/HEAD/.npmignore -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom/node-keytar/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom/node-keytar/HEAD/README.md -------------------------------------------------------------------------------- /binding.gyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom/node-keytar/HEAD/binding.gyp -------------------------------------------------------------------------------- /docker/arm64-cross-compile/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom/node-keytar/HEAD/docker/arm64-cross-compile/Dockerfile -------------------------------------------------------------------------------- /docker/armv7l-cross-compile/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom/node-keytar/HEAD/docker/armv7l-cross-compile/Dockerfile -------------------------------------------------------------------------------- /docker/i386/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom/node-keytar/HEAD/docker/i386/Dockerfile -------------------------------------------------------------------------------- /keytar.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom/node-keytar/HEAD/keytar.d.ts -------------------------------------------------------------------------------- /lib/keytar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom/node-keytar/HEAD/lib/keytar.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom/node-keytar/HEAD/package.json -------------------------------------------------------------------------------- /script/cibuild: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom/node-keytar/HEAD/script/cibuild -------------------------------------------------------------------------------- /script/download-node-lib-win-arm64.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom/node-keytar/HEAD/script/download-node-lib-win-arm64.ps1 -------------------------------------------------------------------------------- /script/upload.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom/node-keytar/HEAD/script/upload.js -------------------------------------------------------------------------------- /spec/keytar-spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom/node-keytar/HEAD/spec/keytar-spec.js -------------------------------------------------------------------------------- /src/async.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom/node-keytar/HEAD/src/async.cc -------------------------------------------------------------------------------- /src/async.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom/node-keytar/HEAD/src/async.h -------------------------------------------------------------------------------- /src/credentials.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom/node-keytar/HEAD/src/credentials.h -------------------------------------------------------------------------------- /src/keytar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom/node-keytar/HEAD/src/keytar.h -------------------------------------------------------------------------------- /src/keytar_mac.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom/node-keytar/HEAD/src/keytar_mac.cc -------------------------------------------------------------------------------- /src/keytar_posix.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom/node-keytar/HEAD/src/keytar_posix.cc -------------------------------------------------------------------------------- /src/keytar_win.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom/node-keytar/HEAD/src/keytar_win.cc -------------------------------------------------------------------------------- /src/main.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom/node-keytar/HEAD/src/main.cc --------------------------------------------------------------------------------