chore: migrate to gitea
This commit is contained in:
44
vendor/github.com/bytedance/sonic/internal/rt/base64_amd64.go
generated
vendored
Normal file
44
vendor/github.com/bytedance/sonic/internal/rt/base64_amd64.go
generated
vendored
Normal file
@@ -0,0 +1,44 @@
|
||||
// +build amd64,go1.17,!go1.27
|
||||
|
||||
package rt
|
||||
|
||||
import (
|
||||
_ "unsafe"
|
||||
"github.com/cloudwego/base64x"
|
||||
)
|
||||
|
||||
func DecodeBase64(raw []byte) ([]byte, error) {
|
||||
ret := make([]byte, base64x.StdEncoding.DecodedLen(len(raw)))
|
||||
n, err := base64x.StdEncoding.Decode(ret, raw)
|
||||
if err != nil {
|
||||
return nil, err
|
||||
}
|
||||
return ret[:n], nil
|
||||
}
|
||||
|
||||
func EncodeBase64ToString(src []byte) string {
|
||||
return base64x.StdEncoding.EncodeToString(src)
|
||||
}
|
||||
|
||||
func EncodeBase64(buf []byte, src []byte) []byte {
|
||||
if len(src) == 0 {
|
||||
return append(buf, '"', '"')
|
||||
}
|
||||
buf = append(buf, '"')
|
||||
need := base64x.StdEncoding.EncodedLen(len(src))
|
||||
if cap(buf) - len(buf) < need {
|
||||
tmp := make([]byte, len(buf), len(buf) + need*2)
|
||||
copy(tmp, buf)
|
||||
buf = tmp
|
||||
}
|
||||
base64x.StdEncoding.Encode(buf[len(buf):cap(buf)], src)
|
||||
buf = buf[:len(buf) + need]
|
||||
buf = append(buf, '"')
|
||||
return buf
|
||||
}
|
||||
|
||||
//go:linkname SubrB64Decode github.com/cloudwego/base64x._subr__b64decode
|
||||
var SubrB64Decode uintptr
|
||||
|
||||
//go:linkname SubrB64Encode github.com/cloudwego/base64x._subr__b64encode
|
||||
var SubrB64Encode uintptr
|
||||
Reference in New Issue
Block a user