代码拉取完成,页面将自动刷新
同步操作将从 golang-module/dongle 强制同步,此操作会覆盖自 Fork 仓库以来所做的任何修改,且无法恢复!!!
确定后同步将在后台操作,完成时将刷新页面,请耐心等待。
// @Package dongle
// @Description a simple, semantic and developer-friendly golang package for encoding&decoding, encryption&decryption and signature&verification
// @Page github.com/golang-module/dongle
// @Developer gouguoyin
// @Blog www.gouguoyin.com
// @Email [email protected]
// Package dongle is a simple, semantic and developer-friendly golang package for encoding&decoding, encryption&decryption and signature&verification.
package dongle
import (
"unsafe"
)
// Version current version
// 当前版本号
const Version = "0.2.8"
// dongle defines a dongle struct.
// 定义 dongle 结构体
type dongle struct {
src []byte
dst []byte
Error error
}
var (
// Encode returns a new Encoder instance
// 返回 encoder 实例
Encode = newEncoder()
// Decode returns a new Decoder instance
// 返回 decoder 实例
Decode = newDecoder()
// Encrypt returns a new Encrypter instance
// 返回 encrypter 实例
Encrypt = newEncrypter()
// Decrypt returns a new Decrypter instance
// 返回 decrypter 实例
Decrypt = newDecrypter()
// Sign returns a new Signer instance
// 返回 signer 实例
Sign = newSigner()
// Verify returns a new Verifier instance
// 返回 verifier 实例
Verify = newVerifier()
)
// converts string to byte slice without a memory allocation.
// 将字符串转换为字节切片
func string2bytes(s string) []byte {
if len(s) == 0 {
return []byte("")
}
return *(*[]byte)(unsafe.Pointer(
&struct {
string
Cap int
}{s, len(s)},
))
}
// converts byte slice to string without a memory allocation.
// 将字节切片转换为字符串
func bytes2string(b []byte) string {
if len(b) == 0 {
return ""
}
return *(*string)(unsafe.Pointer(&b))
}
// converts interface to byte slice.
// 将接口转换为字节切片
func interface2bytes(i interface{}) (b []byte) {
switch v := i.(type) {
case string:
b = string2bytes(v)
case []byte:
b = v
}
return
}
// split the byte slice by the specified size.
// 按照指定长度分割字节切片
func bytesSplit(buf []byte, size int) [][]byte {
var chunk []byte
chunks := make([][]byte, 0, len(buf)/size+1)
for len(buf) >= size {
chunk, buf = buf[:size], buf[size:]
chunks = append(chunks, chunk)
}
return chunks
}
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。