├── .gitattributes ├── .github └── FUNDING.yml ├── .gitignore ├── .npmignore ├── LICENSE ├── README.md ├── binding.gyp ├── index.js ├── package.json ├── quick-test.js ├── src ├── NodeSSPI.cpp └── NodeSSPI.h └── test.js /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abbr/NodeSSPI/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abbr/NodeSSPI/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abbr/NodeSSPI/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- 1 | build/ 2 | .c9/ 3 | node_modules/ 4 | .project 5 | npm-debug.log -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abbr/NodeSSPI/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abbr/NodeSSPI/HEAD/README.md -------------------------------------------------------------------------------- /binding.gyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abbr/NodeSSPI/HEAD/binding.gyp -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abbr/NodeSSPI/HEAD/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abbr/NodeSSPI/HEAD/package.json -------------------------------------------------------------------------------- /quick-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abbr/NodeSSPI/HEAD/quick-test.js -------------------------------------------------------------------------------- /src/NodeSSPI.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abbr/NodeSSPI/HEAD/src/NodeSSPI.cpp -------------------------------------------------------------------------------- /src/NodeSSPI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abbr/NodeSSPI/HEAD/src/NodeSSPI.h -------------------------------------------------------------------------------- /test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abbr/NodeSSPI/HEAD/test.js --------------------------------------------------------------------------------