open-vault/sdk/helper/ldaputil/connection.go

21 lines
489 B
Go
Raw Normal View History

package ldaputil
import (
"crypto/tls"
"time"
"github.com/go-ldap/ldap/v3"
)
// Connection provides the functionality of an LDAP connection,
// but through an interface.
type Connection interface {
Bind(username, password string) error
Close()
Modify(modifyRequest *ldap.ModifyRequest) error
Search(searchRequest *ldap.SearchRequest) (*ldap.SearchResult, error)
StartTLS(config *tls.Config) error
SetTimeout(timeout time.Duration)
UnauthenticatedBind(username string) error
}