本文整理汇总了Golang中github.com/keybase/client/go/libkb.Delegator.SetGlobalContext方法的典型用法代码示例。如果您正苦于以下问题:Golang Delegator.SetGlobalContext方法的具体用法?Golang Delegator.SetGlobalContext怎么用?Golang Delegator.SetGlobalContext使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类github.com/keybase/client/go/libkb.Delegator
的用法示例。
在下文中一共展示了Delegator.SetGlobalContext方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Golang代码示例。
示例1: appendEldest
func (e *DeviceKeygen) appendEldest(ds []libkb.Delegator, ctx *Context, pargs *DeviceKeygenPushArgs) []libkb.Delegator {
if e.pushErr != nil {
return ds
}
var d libkb.Delegator
d, e.pushErr = e.naclSignGen.Push(ctx.LoginContext, true)
if e.pushErr == nil {
d.SetGlobalContext(e.G())
return append(ds, d)
}
return ds
}
示例2: appendEncKey
func (e *DeviceKeygen) appendEncKey(ds []libkb.Delegator, ctx *Context, signer libkb.GenericKey, eldestKID keybase1.KID, user *libkb.User) []libkb.Delegator {
if e.pushErr != nil {
return ds
}
e.naclEncGen.UpdateArg(signer, eldestKID, false, user)
var d libkb.Delegator
d, e.pushErr = e.naclEncGen.Push(ctx.LoginContext, true)
if e.pushErr == nil {
d.SetGlobalContext(e.G())
return append(ds, d)
}
return ds
}
示例3: appendSibkey
func (e *DeviceKeygen) appendSibkey(ds []libkb.Delegator, ctx *Context, pargs *DeviceKeygenPushArgs) []libkb.Delegator {
if e.pushErr != nil {
return ds
}
var d libkb.Delegator
e.naclSignGen.UpdateArg(pargs.Signer, pargs.EldestKID, true, pargs.User)
d, e.pushErr = e.naclSignGen.Push(ctx.LoginContext, true)
if e.pushErr == nil {
d.SetGlobalContext(e.G())
return append(ds, d)
}
return ds
}