加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
signer.go 1.35 KB
一键复制 编辑 原始数据 按行查看 历史
gouguoyin 提交于 2024-11-21 23:08 . 移除中文注释
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()
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化