Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 1 of 1 for NormalizeDN (0.04 seconds)

  1. internal/config/identity/ldap/ldap.go

    }
    
    // QuickNormalizeDN - normalizes the given DN without checking if it is valid or
    // exists in the LDAP directory. Returns input if error
    func (l Config) QuickNormalizeDN(dn string) string {
    	if normDN, err := xldap.NormalizeDN(dn); err == nil {
    		return normDN
    	}
    	return dn
    }
    
    // DecodeDN - denormalizes the given DN by unescaping any escaped characters.
    // Returns input if error
    func (l Config) DecodeDN(dn string) string {
    Created: Sun Dec 28 19:28:13 GMT 2025
    - Last Modified: Fri Jul 12 01:04:53 GMT 2024
    - 12.4K bytes
    - Click Count (1)
Back to Top