kubernetes/vendor/github.com/godbus/dbus/v5/auth_sha1.go

// AuthCookieSha1 returns an Auth that authenticates as the given user with the
// DBUS_COOKIE_SHA1 mechanism. The home parameter should specify the home
// directory of the user.
func AuthCookieSha1(user, home string) Auth {}

type authCookieSha1

func (a authCookieSha1) FirstData() ([]byte, []byte, AuthStatus) {}

func (a authCookieSha1) HandleData(data []byte) ([]byte, AuthStatus) {}

// getCookie searches for the cookie identified by id in context and returns
// the cookie content or nil. (Since HandleData can't return a specific error,
// but only whether an error occurred, this function also doesn't bother to
// return an error.)
func (a authCookieSha1) getCookie(context, id []byte) []byte {}

// generateChallenge returns a random, hex-encoded challenge, or nil on error
// (see above).
func (a authCookieSha1) generateChallenge() []byte {}