Convert bytes to hex string.
(data: bytes)
| 34 | |
| 35 | |
| 36 | def bytes_to_hex(data: bytes) -> str: |
| 37 | """Convert bytes to hex string.""" |
| 38 | return data.hex() |
| 39 | |
| 40 | |
| 41 | async def encrypt_env_vars(envs: List[EnvVar], public_key_hex: str) -> str: |
no outgoing calls
no test coverage detected