summaryrefslogtreecommitdiff
path: root/vendor/github.com/boombuler/barcode/qr/alphanumeric.go
diff options
context:
space:
mode:
authorLibravatar tobi <31960611+tsmethurst@users.noreply.github.com>2025-04-07 16:14:41 +0200
committerLibravatar GitHub <noreply@github.com>2025-04-07 16:14:41 +0200
commit365b5753419238bb96bc3f9b744d380ff20cbafc (patch)
tree6b8e8b605c4cddeb6e3bc0f574ffbc856657e56c /vendor/github.com/boombuler/barcode/qr/alphanumeric.go
parent[bugfix] Don't assume `"manuallyApprovesFollowers": true` if not set (#3978) (diff)
downloadgotosocial-365b5753419238bb96bc3f9b744d380ff20cbafc.tar.xz
[feature] add TOTP two-factor authentication (2FA) (#3960)
* [feature] add TOTP two-factor authentication (2FA) * use byteutil.S2B to avoid allocations when comparing + generating password hashes * don't bother with string conversion for consts * use io.ReadFull * use MustGenerateSecret for backup codes * rename util functions
Diffstat (limited to 'vendor/github.com/boombuler/barcode/qr/alphanumeric.go')
-rw-r--r--vendor/github.com/boombuler/barcode/qr/alphanumeric.go66
1 files changed, 66 insertions, 0 deletions
diff --git a/vendor/github.com/boombuler/barcode/qr/alphanumeric.go b/vendor/github.com/boombuler/barcode/qr/alphanumeric.go
new file mode 100644
index 000000000..4ded7c8e0
--- /dev/null
+++ b/vendor/github.com/boombuler/barcode/qr/alphanumeric.go
@@ -0,0 +1,66 @@
+package qr
+
+import (
+ "errors"
+ "fmt"
+ "strings"
+
+ "github.com/boombuler/barcode/utils"
+)
+
+const charSet string = "0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZ $%*+-./:"
+
+func stringToAlphaIdx(content string) <-chan int {
+ result := make(chan int)
+ go func() {
+ for _, r := range content {
+ idx := strings.IndexRune(charSet, r)
+ result <- idx
+ if idx < 0 {
+ break
+ }
+ }
+ close(result)
+ }()
+
+ return result
+}
+
+func encodeAlphaNumeric(content string, ecl ErrorCorrectionLevel) (*utils.BitList, *versionInfo, error) {
+
+ contentLenIsOdd := len(content)%2 == 1
+ contentBitCount := (len(content) / 2) * 11
+ if contentLenIsOdd {
+ contentBitCount += 6
+ }
+ vi := findSmallestVersionInfo(ecl, alphaNumericMode, contentBitCount)
+ if vi == nil {
+ return nil, nil, errors.New("To much data to encode")
+ }
+
+ res := new(utils.BitList)
+ res.AddBits(int(alphaNumericMode), 4)
+ res.AddBits(len(content), vi.charCountBits(alphaNumericMode))
+
+ encoder := stringToAlphaIdx(content)
+
+ for idx := 0; idx < len(content)/2; idx++ {
+ c1 := <-encoder
+ c2 := <-encoder
+ if c1 < 0 || c2 < 0 {
+ return nil, nil, fmt.Errorf("\"%s\" can not be encoded as %s", content, AlphaNumeric)
+ }
+ res.AddBits(c1*45+c2, 11)
+ }
+ if contentLenIsOdd {
+ c := <-encoder
+ if c < 0 {
+ return nil, nil, fmt.Errorf("\"%s\" can not be encoded as %s", content, AlphaNumeric)
+ }
+ res.AddBits(c, 6)
+ }
+
+ addPaddingAndTerminator(res, vi)
+
+ return res, vi, nil
+}