├── ._.DS_Store ├── .gitignore ├── LDAP.cc ├── LDAPCnx.cc ├── LDAPCnx.h ├── LDAPCookie.cc ├── LDAPCookie.h ├── LDAPError.js ├── LDAPSASL.cc ├── LDAPXSASL.cc ├── LICENCE ├── README.md ├── SASLDefaults.cc ├── SASLDefaults.h ├── binding.gyp ├── index.js ├── package.json └── test ├── .gitignore ├── README.md ├── add.ldif ├── add2.ldif ├── certs ├── ._.DS_Store ├── device.crt ├── device.csr ├── device.key ├── rootCA.key ├── rootCA.pem └── rootCA.srl ├── escaping.js ├── index.js ├── issues.js ├── ldaps.js ├── leakcheck ├── run_sasl.sh ├── run_server.sh ├── sasl.conf ├── sasl.js ├── sasl.ldif ├── slapd.conf ├── startup.ldif └── tls.js /._.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremycx/node-LDAP/HEAD/._.DS_Store -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremycx/node-LDAP/HEAD/.gitignore -------------------------------------------------------------------------------- /LDAP.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremycx/node-LDAP/HEAD/LDAP.cc -------------------------------------------------------------------------------- /LDAPCnx.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremycx/node-LDAP/HEAD/LDAPCnx.cc -------------------------------------------------------------------------------- /LDAPCnx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremycx/node-LDAP/HEAD/LDAPCnx.h -------------------------------------------------------------------------------- /LDAPCookie.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremycx/node-LDAP/HEAD/LDAPCookie.cc -------------------------------------------------------------------------------- /LDAPCookie.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremycx/node-LDAP/HEAD/LDAPCookie.h -------------------------------------------------------------------------------- /LDAPError.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremycx/node-LDAP/HEAD/LDAPError.js -------------------------------------------------------------------------------- /LDAPSASL.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremycx/node-LDAP/HEAD/LDAPSASL.cc -------------------------------------------------------------------------------- /LDAPXSASL.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremycx/node-LDAP/HEAD/LDAPXSASL.cc -------------------------------------------------------------------------------- /LICENCE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremycx/node-LDAP/HEAD/LICENCE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremycx/node-LDAP/HEAD/README.md -------------------------------------------------------------------------------- /SASLDefaults.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremycx/node-LDAP/HEAD/SASLDefaults.cc -------------------------------------------------------------------------------- /SASLDefaults.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremycx/node-LDAP/HEAD/SASLDefaults.h -------------------------------------------------------------------------------- /binding.gyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremycx/node-LDAP/HEAD/binding.gyp -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremycx/node-LDAP/HEAD/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremycx/node-LDAP/HEAD/package.json -------------------------------------------------------------------------------- /test/.gitignore: -------------------------------------------------------------------------------- 1 | /openldap-data 2 | -------------------------------------------------------------------------------- /test/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremycx/node-LDAP/HEAD/test/README.md -------------------------------------------------------------------------------- /test/add.ldif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremycx/node-LDAP/HEAD/test/add.ldif -------------------------------------------------------------------------------- /test/add2.ldif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremycx/node-LDAP/HEAD/test/add2.ldif -------------------------------------------------------------------------------- /test/certs/._.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremycx/node-LDAP/HEAD/test/certs/._.DS_Store -------------------------------------------------------------------------------- /test/certs/device.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremycx/node-LDAP/HEAD/test/certs/device.crt -------------------------------------------------------------------------------- /test/certs/device.csr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremycx/node-LDAP/HEAD/test/certs/device.csr -------------------------------------------------------------------------------- /test/certs/device.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremycx/node-LDAP/HEAD/test/certs/device.key -------------------------------------------------------------------------------- /test/certs/rootCA.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremycx/node-LDAP/HEAD/test/certs/rootCA.key -------------------------------------------------------------------------------- /test/certs/rootCA.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremycx/node-LDAP/HEAD/test/certs/rootCA.pem -------------------------------------------------------------------------------- /test/certs/rootCA.srl: -------------------------------------------------------------------------------- 1 | E9928ADA293BF8F7 2 | -------------------------------------------------------------------------------- /test/escaping.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremycx/node-LDAP/HEAD/test/escaping.js -------------------------------------------------------------------------------- /test/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremycx/node-LDAP/HEAD/test/index.js -------------------------------------------------------------------------------- /test/issues.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremycx/node-LDAP/HEAD/test/issues.js -------------------------------------------------------------------------------- /test/ldaps.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremycx/node-LDAP/HEAD/test/ldaps.js -------------------------------------------------------------------------------- /test/leakcheck: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremycx/node-LDAP/HEAD/test/leakcheck -------------------------------------------------------------------------------- /test/run_sasl.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremycx/node-LDAP/HEAD/test/run_sasl.sh -------------------------------------------------------------------------------- /test/run_server.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremycx/node-LDAP/HEAD/test/run_server.sh -------------------------------------------------------------------------------- /test/sasl.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremycx/node-LDAP/HEAD/test/sasl.conf -------------------------------------------------------------------------------- /test/sasl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremycx/node-LDAP/HEAD/test/sasl.js -------------------------------------------------------------------------------- /test/sasl.ldif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremycx/node-LDAP/HEAD/test/sasl.ldif -------------------------------------------------------------------------------- /test/slapd.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremycx/node-LDAP/HEAD/test/slapd.conf -------------------------------------------------------------------------------- /test/startup.ldif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremycx/node-LDAP/HEAD/test/startup.ldif -------------------------------------------------------------------------------- /test/tls.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremycx/node-LDAP/HEAD/test/tls.js --------------------------------------------------------------------------------