本文整理汇总了Golang中github.com/pebbe/zmq4.Socket.ServerAuthCurve方法的典型用法代码示例。如果您正苦于以下问题:Golang Socket.ServerAuthCurve方法的具体用法?Golang Socket.ServerAuthCurve怎么用?Golang Socket.ServerAuthCurve使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类github.com/pebbe/zmq4.Socket
的用法示例。
在下文中一共展示了Socket.ServerAuthCurve方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Golang代码示例。
示例1: initSecurity
func initSecurity(client_key_path string, private_key_path string, sock *zmq.Socket) {
zmq.AuthStart()
private_key, _, err := keyloader.InitKeys(private_key_path)
condlog.Fatal(err, fmt.Sprintf("Unable to read key pair for private key '%v'", private_key_path))
sock.ServerAuthCurve("scrabble", private_key)
// Add all the public keys in the client key directory
files, err := ioutil.ReadDir(client_key_path)
condlog.Fatal(err, fmt.Sprintf("Unable to enumerate client keys in '%v'", client_key_path))
for _, f := range files {
if !f.IsDir() && strings.HasSuffix(f.Name(), ".public") {
fullpath := path.Join(client_key_path, f.Name())
err = keyloader.CheckPermissions(fullpath)
condlog.Fatal(err, "Untrustworthy key file")
buf, err := ioutil.ReadFile(fullpath)
condlog.Fatal(err, fmt.Sprintf("Unable to load public client key '%v'", fullpath))
zmq.AuthCurveAdd("scrabble", string(buf))
}
}
}