Home
last modified time | relevance | path

Searched refs:base32_alphabet (Results 1 – 11 of 11) sorted by relevance

/dports/dns/wdns/wdns-0.10.0/libmy/
H A Db32_decode.c94 static const char base32_alphabet[32] = { variable
127 x = memchr(base32_alphabet, ascii_toupper(i), in base32_decode()
128 sizeof base32_alphabet); in base32_decode()
129 base32_map[i] = x ? (x - base32_alphabet) : (unsigned char) -1; in base32_decode()
H A Db32_encode.c57 static const char base32_alphabet[32] = { variable
117 *q++ = base32_alphabet[(uint8_t) s[j]]; in base32_encode()
/dports/www/chromium-legacy/chromium-88.0.4324.182/chrome/browser/chromeos/login/
H A Dhwid_checker.cc51 static const char base32_alphabet[] = "ABCDEFGHIJKLMNOPQRSTUVWXYZ234567"; in CalculateExceptionalHWIDChecksum() local
56 checksum += base32_alphabet[(crc32 >> 5) & 0x1f]; in CalculateExceptionalHWIDChecksum()
57 checksum += base32_alphabet[crc32 & 0x1f]; in CalculateExceptionalHWIDChecksum()
81 static const char base32_alphabet[] = "ABCDEFGHIJKLMNOPQRSTUVWXYZ234567"; in CalculateHWIDv3Checksum() local
86 checksum += base32_alphabet[crc32 & 0x1f]; in CalculateHWIDv3Checksum()
/dports/net-p2p/microdc2/microdc2-0.15.6/src/tth/
H A Dbase32.c7 char base32_alphabet[] = "ABCDEFGHIJKLMNOPQRSTUVWXYZ234567"; variable
26 digest[j++] = base32_alphabet[idx]; in base32_encode()
32 digest[j++] = base32_alphabet[idx]; in base32_encode()
/dports/www/nginx-full/set-misc-nginx-module-4667684/src/
H A Dngx_http_set_misc_module.c362 offsetof(ngx_http_set_misc_loc_conf_t, base32_alphabet),
489 conf->base32_alphabet.data = NULL; in ngx_http_set_misc_create_loc_conf()
490 conf->base32_alphabet.len = 0; in ngx_http_set_misc_create_loc_conf()
507 ngx_conf_merge_str_value(conf->base32_alphabet, prev->base32_alphabet, in ngx_http_set_misc_merge_loc_conf()
513 conf->basis32[conf->base32_alphabet.data[i]] = (u_char) i; in ngx_http_set_misc_merge_loc_conf()
H A Dngx_http_set_misc_module.h20 ngx_str_t base32_alphabet; member
H A Dngx_http_set_base32.c47 &conf->base32_alphabet); in ngx_http_set_misc_encode_base32()
/dports/security/p5-CryptX/CryptX-0.075/src/ltc/headers/
H A Dtomcrypt_misc.h38 } base32_alphabet; typedef
41 base32_alphabet id);
44 base32_alphabet id);
/dports/security/p5-CryptX/CryptX-0.075/src/ltc/misc/base32/
H A Dbase32_decode.c19 base32_alphabet id) in base32_decode()
H A Dbase32_encode.c19 base32_alphabet id) in base32_encode()
/dports/devel/py-bitarray/bitarray-2.3.4/bitarray/
H A D_util.c516 static const char base32_alphabet[] = "ABCDEFGHIJKLMNOPQRSTUVWXYZ234567"; variable
588 case 32: alphabet = base32_alphabet; break; in ba2base()