(n, blocksize=0)
| 8 | from cryptography.utils import int_to_bytes as _long_to_bytes |
| 9 | |
| 10 | def long_to_bytes(n, blocksize=0): |
| 11 | return _long_to_bytes(n, blocksize or None) |
| 12 | |
| 13 | except ImportError: |
| 14 | from ecdsa.ecdsa import int_to_string as _long_to_bytes |
no outgoing calls
no test coverage detected
searching dependent graphs…