summaryrefslogtreecommitdiff
path: root/vendor/github.com/chenzhuoyu/base64x/base64x.go
diff options
context:
space:
mode:
authorLibravatar dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>2023-11-27 13:15:03 +0000
committerLibravatar GitHub <noreply@github.com>2023-11-27 13:15:03 +0000
commit66b77acb1c8b86f0be3836ccaf31683c0bfa317a (patch)
tree9a255a8ea8ef97229b6d75d17de45bdac1755be9 /vendor/github.com/chenzhuoyu/base64x/base64x.go
parent[bugfix] Add Actor to outgoing poll vote Create; other fixes (#2384) (diff)
downloadgotosocial-66b77acb1c8b86f0be3836ccaf31683c0bfa317a.tar.xz
[chore]: Bump github.com/gin-contrib/cors from 1.4.0 to 1.5.0 (#2388)
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Diffstat (limited to 'vendor/github.com/chenzhuoyu/base64x/base64x.go')
-rw-r--r--vendor/github.com/chenzhuoyu/base64x/base64x.go10
1 files changed, 2 insertions, 8 deletions
diff --git a/vendor/github.com/chenzhuoyu/base64x/base64x.go b/vendor/github.com/chenzhuoyu/base64x/base64x.go
index 3d457176b..f0746fce4 100644
--- a/vendor/github.com/chenzhuoyu/base64x/base64x.go
+++ b/vendor/github.com/chenzhuoyu/base64x/base64x.go
@@ -71,7 +71,7 @@ func (self Encoding) Encode(out []byte, src []byte) {
//
// It will also update the length of out.
func (self Encoding) EncodeUnsafe(out *[]byte, src []byte) {
- __b64encode(out, &src, int(self) | archFlags)
+ b64encode(out, &src, int(self) | archFlags)
}
// EncodeToString returns the base64 encoding of src.
@@ -120,7 +120,7 @@ func (self Encoding) Decode(out []byte, src []byte) (int, error) {
//
// It will also update the length of out.
func (self Encoding) DecodeUnsafe(out *[]byte, src []byte) (int, error) {
- if n := __b64decode(out, mem2addr(src), len(src), int(self) | archFlags); n >= 0 {
+ if n := b64decode(out, mem2addr(src), len(src), int(self) | archFlags); n >= 0 {
return n, nil
} else {
return 0, base64.CorruptInputError(-n - 1)
@@ -149,9 +149,3 @@ func (self Encoding) DecodedLen(n int) int {
return n * 6 / 8
}
}
-
-func init() {
- if hasAVX2() {
- archFlags = _MODE_AVX2
- }
-}