├── .gitignore ├── LICENSE ├── README.md ├── bind.go ├── conn.go ├── control.go ├── debug.go ├── examples ├── enterprise.ldif ├── modify.go ├── proxy.go ├── search.go ├── searchSSL.go ├── searchTLS.go ├── server.go └── slapd.conf ├── filter.go ├── filter_test.go ├── go.mod ├── go.sum ├── ldap.go ├── ldap_test.go ├── modify.go ├── search.go ├── server.go ├── server_bind.go ├── server_modify.go ├── server_modify_test.go ├── server_search.go ├── server_search_test.go ├── server_test.go └── tests ├── add.ldif ├── add2.ldif ├── cert_DONOTUSE.pem ├── key_DONOTUSE.pem ├── modify.ldif └── modify2.ldif /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmcclain/ldap/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmcclain/ldap/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmcclain/ldap/HEAD/README.md -------------------------------------------------------------------------------- /bind.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmcclain/ldap/HEAD/bind.go -------------------------------------------------------------------------------- /conn.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmcclain/ldap/HEAD/conn.go -------------------------------------------------------------------------------- /control.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmcclain/ldap/HEAD/control.go -------------------------------------------------------------------------------- /debug.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmcclain/ldap/HEAD/debug.go -------------------------------------------------------------------------------- /examples/enterprise.ldif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmcclain/ldap/HEAD/examples/enterprise.ldif -------------------------------------------------------------------------------- /examples/modify.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmcclain/ldap/HEAD/examples/modify.go -------------------------------------------------------------------------------- /examples/proxy.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmcclain/ldap/HEAD/examples/proxy.go -------------------------------------------------------------------------------- /examples/search.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmcclain/ldap/HEAD/examples/search.go -------------------------------------------------------------------------------- /examples/searchSSL.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmcclain/ldap/HEAD/examples/searchSSL.go -------------------------------------------------------------------------------- /examples/searchTLS.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmcclain/ldap/HEAD/examples/searchTLS.go -------------------------------------------------------------------------------- /examples/server.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmcclain/ldap/HEAD/examples/server.go -------------------------------------------------------------------------------- /examples/slapd.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmcclain/ldap/HEAD/examples/slapd.conf -------------------------------------------------------------------------------- /filter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmcclain/ldap/HEAD/filter.go -------------------------------------------------------------------------------- /filter_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmcclain/ldap/HEAD/filter_test.go -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmcclain/ldap/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmcclain/ldap/HEAD/go.sum -------------------------------------------------------------------------------- /ldap.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmcclain/ldap/HEAD/ldap.go -------------------------------------------------------------------------------- /ldap_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmcclain/ldap/HEAD/ldap_test.go -------------------------------------------------------------------------------- /modify.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmcclain/ldap/HEAD/modify.go -------------------------------------------------------------------------------- /search.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmcclain/ldap/HEAD/search.go -------------------------------------------------------------------------------- /server.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmcclain/ldap/HEAD/server.go -------------------------------------------------------------------------------- /server_bind.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmcclain/ldap/HEAD/server_bind.go -------------------------------------------------------------------------------- /server_modify.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmcclain/ldap/HEAD/server_modify.go -------------------------------------------------------------------------------- /server_modify_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmcclain/ldap/HEAD/server_modify_test.go -------------------------------------------------------------------------------- /server_search.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmcclain/ldap/HEAD/server_search.go -------------------------------------------------------------------------------- /server_search_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmcclain/ldap/HEAD/server_search_test.go -------------------------------------------------------------------------------- /server_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmcclain/ldap/HEAD/server_test.go -------------------------------------------------------------------------------- /tests/add.ldif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmcclain/ldap/HEAD/tests/add.ldif -------------------------------------------------------------------------------- /tests/add2.ldif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmcclain/ldap/HEAD/tests/add2.ldif -------------------------------------------------------------------------------- /tests/cert_DONOTUSE.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmcclain/ldap/HEAD/tests/cert_DONOTUSE.pem -------------------------------------------------------------------------------- /tests/key_DONOTUSE.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmcclain/ldap/HEAD/tests/key_DONOTUSE.pem -------------------------------------------------------------------------------- /tests/modify.ldif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmcclain/ldap/HEAD/tests/modify.ldif -------------------------------------------------------------------------------- /tests/modify2.ldif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmcclain/ldap/HEAD/tests/modify2.ldif --------------------------------------------------------------------------------