(json_str)
| 202 | |
| 203 | |
| 204 | def json_to_base64(json_str): |
| 205 | json_bytes = string_to_bytes(json_str) |
| 206 | json_b64 = base64.b64encode(json_bytes).decode() |
| 207 | return json_b64 |
| 208 | |
| 209 | |
| 210 | def decrypt_encryption_params(encryption_params, password): # type: (bytes, str) -> bytes |
no test coverage detected