mirror of
https://github.com/containers/podman.git
synced 2025-09-10 04:12:20 +08:00

Update the outdated systemd and dbus dependencies which are now provided as go modules. This will further tighten our dependencies and releases and pave the way for the upcoming auto-update feature. Signed-off-by: Valentin Rothberg <rothberg@redhat.com>
27 lines
582 B
Go
27 lines
582 B
Go
package dbus
|
|
|
|
import (
|
|
"encoding/hex"
|
|
)
|
|
|
|
// AuthExternal returns an Auth that authenticates as the given user with the
|
|
// EXTERNAL mechanism.
|
|
func AuthExternal(user string) Auth {
|
|
return authExternal{user}
|
|
}
|
|
|
|
// AuthExternal implements the EXTERNAL authentication mechanism.
|
|
type authExternal struct {
|
|
user string
|
|
}
|
|
|
|
func (a authExternal) FirstData() ([]byte, []byte, AuthStatus) {
|
|
b := make([]byte, 2*len(a.user))
|
|
hex.Encode(b, []byte(a.user))
|
|
return []byte("EXTERNAL"), b, AuthOk
|
|
}
|
|
|
|
func (a authExternal) HandleData(b []byte) ([]byte, AuthStatus) {
|
|
return nil, AuthError
|
|
}
|