X7ROOT File Manager
Current Path:
/opt/alt/python37/lib/python3.7/site-packages/asn1crypto
opt
/
alt
/
python37
/
lib
/
python3.7
/
site-packages
/
asn1crypto
/
📁
..
📄
__init__.py
(209 B)
📁
__pycache__
📄
_elliptic_curve.py
(9.19 KB)
📄
_errors.py
(967 B)
📄
_ffi.py
(738 B)
📄
_inet.py
(4.72 KB)
📄
_int.py
(4.51 KB)
📄
_iri.py
(8.43 KB)
📄
_ordereddict.py
(4.43 KB)
📁
_perf
📄
_teletex_codec.py
(4.93 KB)
📄
_types.py
(939 B)
📄
algos.py
(32.73 KB)
📄
cms.py
(24.96 KB)
📄
core.py
(146.88 KB)
📄
crl.py
(15.84 KB)
📄
csr.py
(2.11 KB)
📄
keys.py
(34.23 KB)
📄
ocsp.py
(17.58 KB)
📄
parser.py
(8.93 KB)
📄
pdf.py
(2.25 KB)
📄
pem.py
(5.98 KB)
📄
pkcs12.py
(4.53 KB)
📄
tsp.py
(7.88 KB)
📄
util.py
(17.62 KB)
📄
version.py
(154 B)
📄
x509.py
(81.32 KB)
Editing: _ffi.py
# 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
Upload File
Create Folder