Server IP : 192.158.238.246 / Your IP : 3.143.203.223 Web Server : LiteSpeed System : Linux uniform.iwebfusion.net 4.18.0-553.27.1.lve.1.el8.x86_64 #1 SMP Wed Nov 20 15:58:00 UTC 2024 x86_64 User : jenniferflocom ( 1321) PHP Version : 8.1.32 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /usr/lib/python3.6/site-packages/asn1crypto/ |
Upload File : |
# coding: utf-8 """ FFI helper compatibility functions. Exports the following items: - LibraryNotFoundError - FFIEngineError - bytes_from_buffer() - buffer_from_bytes() - null() """ from __future__ import unicode_literals, division, absolute_import, print_function from ctypes import create_string_buffer def buffer_from_bytes(initializer): return create_string_buffer(initializer) def bytes_from_buffer(buffer, maxlen=None): return buffer.raw def null(): return None class LibraryNotFoundError(Exception): """ An exception when trying to find a shared library """ pass class FFIEngineError(Exception): """ An exception when trying to instantiate ctypes or cffi """ pass