Home
last modified time | relevance | path

Searched refs:_encode_base64 (Results 1 – 3 of 3) sorted by relevance

/third_party/python/Mac/Tools/
Dplistlib_generate_testdata.py91 …print(" %s: binascii.a2b_base64(b'''\n %s'''),"%(fmt_name, _encode_base64(bytes(data)).d…
94 …print(" 'KEYED_ARCHIVE': binascii.a2b_base64(b'''\n %s''')," % (_encode_base64(bytes(key…
98 def _encode_base64(s, maxlinelength=60): function
/third_party/python/Lib/email/
Dcontentmanager.py133 def _encode_base64(data, max_line_length): function
175 data = _encode_base64(embedded_body(lines), policy.max_line_length)
233 data = _encode_base64(data, max_line_length=msg.policy.max_line_length)
/third_party/python/Lib/
Dplistlib.py112 def _encode_base64(s, maxlinelength=76): function
369 for line in _encode_base64(data, maxlinelength).split(b"\n"):