Registry / auth / ldap-v3

ldap-v3

JSON →
library3.4.13gogounverified

Package ldap provides basic LDAP v3 functionality for authentication and directory operations.

go get gopkg.in/ldap.v3
INSTALL
IMPORT
SIG · LDAP-V3
L
ldap-v3
authgov3.4.13
harness data pending
Install & Compatibility
Where this runs

No compatibility data collected yet for this library.

Code
Verified usage

Verified import paths — ran on the pinned version, not inferred.

ldap
gopkg.in/ldap.v3

Connects to an LDAP server and authenticates with a bind DN.

package main import ( "fmt" "gopkg.in/ldap.v3" ) func main() { conn, err := ldap.Dial("tcp", "ldap.example.com:389") if err != nil { panic(err) } defer conn.Close() err = conn.Bind("cn=admin,dc=example,dc=com", "password") if err != nil { panic(err) } fmt.Println("Authenticated") }
Debug
Known issues

No known issues recorded.

Upgrade
Version history
3.4.13latest on pkg.go.dev
Audit
Dependencies

No dependency data recorded yet.

Agent activity
14 hits · last 30 days
node
14
Resources
ldap-v3 — go get ldap-v3 · libregistry