本文整理匯總了Golang中github.com/octokey/octokey-go/buffer.Buffer.String方法的典型用法代碼示例。如果您正苦於以下問題:Golang Buffer.String方法的具體用法?Golang Buffer.String怎麽用?Golang Buffer.String使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類github.com/octokey/octokey-go/buffer.Buffer
的用法示例。
在下文中一共展示了Buffer.String方法的3個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Golang代碼示例。
示例1: String
// Format gives you the partial key in the canonical representation including
// ----BEGIN/END headers.
func (k *PartialKey) String() string {
b := new(buffer.Buffer)
k.WriteBuffer(b)
if b.Error != nil {
panic(errors.New("invalid partial key: " + b.Error.Error()))
}
return HEADER + "\n" + lineWrap(b.String(), 64) + FOOTER + "\n"
}
示例2: String
// String returns the public key in the same format as used by ssh
func (p *PublicKey) String() string {
b := new(buffer.Buffer)
p.WriteBuffer(b)
if b.Error != nil {
panic(errors.New("invalid public key: " + b.Error.Error()))
}
return PUBLIC_KEY_TYPE + " " + b.String() + "\n"
}
示例3: String
// String produces the line-wrapped base-64 version of the challenge,
// suitable for being passed to NewSignRequest()
func (request *SignRequest) String() string {
b := new(buffer.Buffer)
request.WriteBuffer(b)
if b.Error != nil {
panic(errors.New("invalid sign request: " + b.Error.Error()))
}
return SIGN_REQUEST_HEADER + "\n" + lineWrap(b.String(), 64) + SIGN_REQUEST_FOOTER + "\n"
}