代码拉取完成,页面将自动刷新
package dongle
type Signer struct {
dongle
}
// newSigner returns a new Signer instance.
func newSigner() Signer {
return Signer{}
}
// FromString signs from string.
func (s Signer) FromString(message string) Signer {
s.src = string2bytes(message)
return s
}
// FromBytes signs from byte slice.
func (s Signer) FromBytes(message []byte) Signer {
s.src = message
return s
}
// String implements Stringer interface for Signer struct.
func (s Signer) String() string {
return s.ToRawString()
}
// ToRawString outputs as raw string without encoding.
func (s Signer) ToRawString() string {
return bytes2string(s.dst)
}
// ToHexString outputs as string with hex encoding.
func (s Signer) ToHexString() string {
return Encode.FromBytes(s.dst).ByHex().ToString()
}
// ToBase64String outputs as string with base64 encoding.
func (s Signer) ToBase64String() string {
return Encode.FromBytes(s.dst).ByBase64().ToString()
}
// ToRawBytes outputs as raw byte slice without encoding.
func (s Signer) ToRawBytes() []byte {
if len(s.dst) == 0 {
return []byte("")
}
return s.dst
}
// ToHexBytes outputs as byte with hex encoding.
func (s Signer) ToHexBytes() []byte {
return Encode.FromBytes(s.dst).ByHex().ToBytes()
}
// ToBase64Bytes outputs as byte slice with base64 encoding.
func (s Signer) ToBase64Bytes() []byte {
return Encode.FromBytes(s.dst).ByBase64().ToBytes()
}
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。