Encode bytes-like object s using the standard Base64 alphabet. The result is returned as a bytes object.
(s)
| 86 | |
| 87 | |
| 88 | def standard_b64encode(s): |
| 89 | """Encode bytes-like object s using the standard Base64 alphabet. |
| 90 | |
| 91 | The result is returned as a bytes object. |
| 92 | """ |
| 93 | return b64encode(s) |
| 94 | |
| 95 | def standard_b64decode(s): |
| 96 | """Decode bytes encoded with the standard Base64 alphabet. |
nothing calls this directly
no test coverage detected