Searched refs:b64string (Results 1 – 2 of 2) sorted by relevance
348 def _urlsafe_b64decode(b64string): argument350 if isinstance(b64string, six.text_type):351 b64string = b64string.encode('ascii')352 padded = b64string + b'=' * (4 - len(b64string) % 4)
1596 def _urlsafe_b64decode(b64string): argument1598 if isinstance(b64string, six.text_type):1599 b64string = b64string.encode('ascii')1600 padded = b64string + b'=' * (4 - len(b64string) % 4)