You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

53 lines
1.2 KiB

  1. [![GoDoc](https://godoc.org/gopkg.in/ldap.v2?status.svg)](https://godoc.org/gopkg.in/ldap.v2)
  2. [![Build Status](https://travis-ci.org/go-ldap/ldap.svg)](https://travis-ci.org/go-ldap/ldap)
  3. # Basic LDAP v3 functionality for the GO programming language.
  4. ## Install
  5. For the latest version use:
  6. go get gopkg.in/ldap.v2
  7. Import the latest version with:
  8. import "gopkg.in/ldap.v2"
  9. ## Required Libraries:
  10. - gopkg.in/asn1-ber.v1
  11. ## Features:
  12. - Connecting to LDAP server (non-TLS, TLS, STARTTLS)
  13. - Binding to LDAP server
  14. - Searching for entries
  15. - Filter Compile / Decompile
  16. - Paging Search Results
  17. - Modify Requests / Responses
  18. - Add Requests / Responses
  19. - Delete Requests / Responses
  20. ## Examples:
  21. - search
  22. - modify
  23. ## Contributing:
  24. Bug reports and pull requests are welcome!
  25. Before submitting a pull request, please make sure tests and verification scripts pass:
  26. ```
  27. make all
  28. ```
  29. To set up a pre-push hook to run the tests and verify scripts before pushing:
  30. ```
  31. ln -s ../../.githooks/pre-push .git/hooks/pre-push
  32. ```
  33. ---
  34. The Go gopher was designed by Renee French. (http://reneefrench.blogspot.com/)
  35. The design is licensed under the Creative Commons 3.0 Attributions license.
  36. Read this article for more details: http://blog.golang.org/gopher