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.

54 lines
1.3 KiB

  1. [![GoDoc](https://godoc.org/gopkg.in/ldap.v3?status.svg)](https://godoc.org/gopkg.in/ldap.v3)
  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.v3
  7. Import the latest version with:
  8. import "gopkg.in/ldap.v3"
  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. - Modify DN Requests / Responses
  21. ## Examples:
  22. - search
  23. - modify
  24. ## Contributing:
  25. Bug reports and pull requests are welcome!
  26. Before submitting a pull request, please make sure tests and verification scripts pass:
  27. ```
  28. make all
  29. ```
  30. To set up a pre-push hook to run the tests and verify scripts before pushing:
  31. ```
  32. ln -s ../../.githooks/pre-push .git/hooks/pre-push
  33. ```
  34. ---
  35. The Go gopher was designed by Renee French. (http://reneefrench.blogspot.com/)
  36. The design is licensed under the Creative Commons 3.0 Attributions license.
  37. Read this article for more details: http://blog.golang.org/gopher