MCPcopy
hub / github.com/authlib/authlib / urlsafe_b64decode

Function urlsafe_b64decode

authlib/common/encoding.py:40–42  ·  view source on GitHub ↗
(s)

Source from the content-addressed store, hash-verified

38
39
40def urlsafe_b64decode(s):
41 s += b"=" * (-len(s) % 4)
42 return base64.urlsafe_b64decode(s)
43
44
45def urlsafe_b64encode(s):

Callers 8

extract_segmentFunction · 0.90
unwrapMethod · 0.90
u32be_len_inputFunction · 0.90
load_raw_keyMethod · 0.90
load_private_keyMethod · 0.90
load_public_keyMethod · 0.90
base64_to_intFunction · 0.85

Calls

no outgoing calls

Used in the wild real call sites across dependent graphs

searching dependent graphs…