mirror of
https://github.com/aljazceru/kata-containers.git
synced 2025-12-27 02:54:27 +01:00
Add new vendor library "github.com/containerd/cgroups" commit: 5017d4e9a9cf2d4381db99eacd9baf84b95bfb14 This library is for host cgroup support for next commit. Signed-off-by: Wei Zhang <zhangwei555@huawei.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
|
|
}
|