Basic LDAP v3 functionality for the GO programming language. (evacuated from NSA/Microsoft Github)

anonymous 4d4f2accb1 preliminary debian paackage hace 6 años
debian 4d4f2accb1 preliminary debian paackage hace 6 años
.travis.yml 38e4932796 update travis go versions hace 6 años
CONTRIBUTING.md dd9a045c7c Add an initial Contributions Guideline document hace 6 años
LICENSE 0ffb14260b Add attribution for go-ldap authors hace 8 años
Makefile 1de34761a3 .travis.yml: add go 1.8 and 1.9; Makefile: add -cpu hace 7 años
README.md 783af35940 add ModifyDN() - moddn/modrdn (#149) hace 6 años
add.go 3d01c7ea6f fix govet/golint errors hace 8 años
atomic_value.go 565e88aaf5 Fix race conditions with isClosing / closeErr hace 8 años
atomic_value_go13.go 565e88aaf5 Fix race conditions with isClosing / closeErr hace 8 años
bind.go ce5c412baa use ber.DecodePacketErr() hace 6 años
client.go 783af35940 add ModifyDN() - moddn/modrdn (#149) hace 6 años
compare.go ce5c412baa use ber.DecodePacketErr() hace 6 años
conn.go 0ae9f2495c Remove stale references to BSD license (#136) hace 7 años
conn_test.go db4cd3d96b fix typos hace 7 años
control.go ce5c412baa use ber.DecodePacketErr() hace 6 años
control_test.go ce5c412baa use ber.DecodePacketErr() hace 6 años
debug.go db4cd3d96b fix typos hace 7 años
del.go 69cb73b01d Fix control packets being encoded when none exist on bind hace 7 años
dn.go ce5c412baa use ber.DecodePacketErr() hace 6 años
dn_test.go 4d4f2accb1 preliminary debian paackage hace 6 años
doc.go e6cf29f660 Converts the examples to go style examples hace 9 años
error.go bb09d4b178 Require explicit intention for empty password. hace 7 años
error_test.go db4cd3d96b fix typos hace 7 años
example_test.go 4d4f2accb1 preliminary debian paackage hace 6 años
filter.go 0ae9f2495c Remove stale references to BSD license (#136) hace 7 años
filter_test.go 4d4f2accb1 preliminary debian paackage hace 6 años
ldap.go ce5c412baa use ber.DecodePacketErr() hace 6 años
ldap_test.go bb09d4b178 Require explicit intention for empty password. hace 7 años
moddn.go 783af35940 add ModifyDN() - moddn/modrdn (#149) hace 6 años
moddn_test.go 4d4f2accb1 preliminary debian paackage hace 6 años
modify.go 0776dae456 Allow order of changes in ModifyRequest to be specified (#148) hace 6 años
passwdmodify.go ce5c412baa use ber.DecodePacketErr() hace 6 años
search.go ce5c412baa use ber.DecodePacketErr() hace 6 años
search_test.go db4cd3d96b fix typos hace 7 años

README.md

GoDoc Build Status

Basic LDAP v3 functionality for the GO programming language.

Install

For the latest version use:

go get gopkg.in/ldap.v2

Import the latest version with:

import "gopkg.in/ldap.v2"

Required Libraries:

  • gopkg.in/asn1-ber.v1

Features:

  • Connecting to LDAP server (non-TLS, TLS, STARTTLS)
  • Binding to LDAP server
  • Searching for entries
  • Filter Compile / Decompile
  • Paging Search Results
  • Modify Requests / Responses
  • Add Requests / Responses
  • Delete Requests / Responses
  • Modify DN Requests / Responses

Examples:

  • search
  • modify

Contributing:

Bug reports and pull requests are welcome!

Before submitting a pull request, please make sure tests and verification scripts pass:

make all

To set up a pre-push hook to run the tests and verify scripts before pushing:

ln -s ../../.githooks/pre-push .git/hooks/pre-push

The Go gopher was designed by Renee French. (http://reneefrench.blogspot.com/) The design is licensed under the Creative Commons 3.0 Attributions license. Read this article for more details: http://blog.golang.org/gopher