File: lib

package info (click to toggle)
python-mceliece 0~20241009.2-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 204 kB
  • sloc: python: 491; makefile: 2
file content (22 lines) | stat: -rw-r--r-- 594 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#!/usr/bin/env python3

project='mceliece'

lib="""from ctypes.util import find_library as _find_library
from ctypes import CDLL as _CDLL

_libname = _find_library('%s')
if _libname is None:
    raise FileNotFoundError("unable to locate library '%s'")
_lib = _CDLL(_libname)


def _check_input(x, xlen, name):
    if not isinstance(x, bytes):
        raise TypeError(f'{name} must be bytes')
    if xlen != -1 and xlen != len(x):
        raise ValueError(f'{name} length must have exactly {xlen} bytes')
""" % (project, project)

with open(f'src/{project}/_lib.py', 'w') as f:
    f.write(lib)