pybase16384 0.3.4__pp39-pypy39_pp73-macosx_11_0_arm64.whl → 0.3.5__pp39-pypy39_pp73-macosx_11_0_arm64.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of pybase16384 might be problematic. Click here for more details.
- pybase16384/__init__.py +1 -1
- pybase16384/backends/cffi/_core.pypy39-pp73-darwin.so +0 -0
- pybase16384/backends/cython/_core.c +33 -45
- pybase16384/backends/cython/_core.pypy39-pp73-darwin.so +0 -0
- {pybase16384-0.3.4.dist-info → pybase16384-0.3.5.dist-info}/METADATA +3 -4
- pybase16384-0.3.5.dist-info/RECORD +16 -0
- {pybase16384-0.3.4.dist-info → pybase16384-0.3.5.dist-info}/WHEEL +1 -1
- pybase16384-0.3.4.dist-info/RECORD +0 -16
- {pybase16384-0.3.4.dist-info → pybase16384-0.3.5.dist-info}/LICENSE +0 -0
- {pybase16384-0.3.4.dist-info → pybase16384-0.3.5.dist-info}/top_level.txt +0 -0
pybase16384/__init__.py
CHANGED
|
Binary file
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
/* Generated by Cython 3.0.
|
|
1
|
+
/* Generated by Cython 3.0.9 */
|
|
2
2
|
|
|
3
3
|
/* BEGIN: Cython Metadata
|
|
4
4
|
{
|
|
@@ -57,10 +57,10 @@ END: Cython Metadata */
|
|
|
57
57
|
#else
|
|
58
58
|
#define __PYX_EXTRA_ABI_MODULE_NAME ""
|
|
59
59
|
#endif
|
|
60
|
-
#define CYTHON_ABI "
|
|
60
|
+
#define CYTHON_ABI "3_0_9" __PYX_EXTRA_ABI_MODULE_NAME
|
|
61
61
|
#define __PYX_ABI_MODULE_NAME "_cython_" CYTHON_ABI
|
|
62
62
|
#define __PYX_TYPE_MODULE_PREFIX __PYX_ABI_MODULE_NAME "."
|
|
63
|
-
#define CYTHON_HEX_VERSION
|
|
63
|
+
#define CYTHON_HEX_VERSION 0x030009F0
|
|
64
64
|
#define CYTHON_FUTURE_DIVISION 1
|
|
65
65
|
#include <stddef.h>
|
|
66
66
|
#ifndef offsetof
|
|
@@ -753,8 +753,13 @@ END: Cython Metadata */
|
|
|
753
753
|
typedef PyObject *(*__Pyx_PyCFunctionFastWithKeywords) (PyObject *self, PyObject *const *args,
|
|
754
754
|
Py_ssize_t nargs, PyObject *kwnames);
|
|
755
755
|
#else
|
|
756
|
-
#
|
|
757
|
-
#define
|
|
756
|
+
#if PY_VERSION_HEX >= 0x030d00A4
|
|
757
|
+
# define __Pyx_PyCFunctionFast PyCFunctionFast
|
|
758
|
+
# define __Pyx_PyCFunctionFastWithKeywords PyCFunctionFastWithKeywords
|
|
759
|
+
#else
|
|
760
|
+
# define __Pyx_PyCFunctionFast _PyCFunctionFast
|
|
761
|
+
# define __Pyx_PyCFunctionFastWithKeywords _PyCFunctionFastWithKeywords
|
|
762
|
+
#endif
|
|
758
763
|
#endif
|
|
759
764
|
#if CYTHON_METH_FASTCALL
|
|
760
765
|
#define __Pyx_METH_FASTCALL METH_FASTCALL
|
|
@@ -1106,7 +1111,7 @@ static CYTHON_INLINE PyObject * __Pyx_PyDict_GetItemStrWithError(PyObject *dict,
|
|
|
1106
1111
|
#define __Pyx_PyBytes_GET_SIZE(o) PyBytes_Size(o)
|
|
1107
1112
|
#define __Pyx_PyByteArray_GET_SIZE(o) PyByteArray_Size(o)
|
|
1108
1113
|
#endif
|
|
1109
|
-
#if
|
|
1114
|
+
#if __PYX_LIMITED_VERSION_HEX >= 0x030d00A1
|
|
1110
1115
|
#define __Pyx_PyImport_AddModuleRef(name) PyImport_AddModuleRef(name)
|
|
1111
1116
|
#else
|
|
1112
1117
|
static CYTHON_INLINE PyObject *__Pyx_PyImport_AddModuleRef(const char *name) {
|
|
@@ -1193,7 +1198,7 @@ static CYTHON_INLINE float __PYX_NAN() {
|
|
|
1193
1198
|
#endif
|
|
1194
1199
|
|
|
1195
1200
|
#define __PYX_MARK_ERR_POS(f_index, lineno) \
|
|
1196
|
-
{ __pyx_filename = __pyx_f[f_index]; (void)__pyx_filename; __pyx_lineno = lineno; (void)__pyx_lineno; __pyx_clineno = __LINE__;
|
|
1201
|
+
{ __pyx_filename = __pyx_f[f_index]; (void)__pyx_filename; __pyx_lineno = lineno; (void)__pyx_lineno; __pyx_clineno = __LINE__; (void)__pyx_clineno; }
|
|
1197
1202
|
#define __PYX_ERR(f_index, lineno, Ln_error) \
|
|
1198
1203
|
{ __PYX_MARK_ERR_POS(f_index, lineno) goto Ln_error; }
|
|
1199
1204
|
|
|
@@ -1309,24 +1314,7 @@ static CYTHON_INLINE PyObject* __Pyx_PyUnicode_FromString(const char*);
|
|
|
1309
1314
|
#define __Pyx_PyByteArray_FromCString(s) __Pyx_PyByteArray_FromString((const char*)s)
|
|
1310
1315
|
#define __Pyx_PyStr_FromCString(s) __Pyx_PyStr_FromString((const char*)s)
|
|
1311
1316
|
#define __Pyx_PyUnicode_FromCString(s) __Pyx_PyUnicode_FromString((const char*)s)
|
|
1312
|
-
#if CYTHON_COMPILING_IN_LIMITED_API
|
|
1313
|
-
static CYTHON_INLINE size_t __Pyx_Py_UNICODE_strlen(const wchar_t *u)
|
|
1314
|
-
{
|
|
1315
|
-
const wchar_t *u_end = u;
|
|
1316
|
-
while (*u_end++) ;
|
|
1317
|
-
return (size_t)(u_end - u - 1);
|
|
1318
|
-
}
|
|
1319
|
-
#else
|
|
1320
|
-
static CYTHON_INLINE size_t __Pyx_Py_UNICODE_strlen(const Py_UNICODE *u)
|
|
1321
|
-
{
|
|
1322
|
-
const Py_UNICODE *u_end = u;
|
|
1323
|
-
while (*u_end++) ;
|
|
1324
|
-
return (size_t)(u_end - u - 1);
|
|
1325
|
-
}
|
|
1326
|
-
#endif
|
|
1327
1317
|
#define __Pyx_PyUnicode_FromOrdinal(o) PyUnicode_FromOrdinal((int)o)
|
|
1328
|
-
#define __Pyx_PyUnicode_FromUnicode(u) PyUnicode_FromUnicode(u, __Pyx_Py_UNICODE_strlen(u))
|
|
1329
|
-
#define __Pyx_PyUnicode_FromUnicodeAndLength PyUnicode_FromUnicode
|
|
1330
1318
|
#define __Pyx_PyUnicode_AsUnicode PyUnicode_AsUnicode
|
|
1331
1319
|
#define __Pyx_NewRef(obj) (Py_INCREF(obj), obj)
|
|
1332
1320
|
#define __Pyx_Owned_Py_None(b) __Pyx_NewRef(Py_None)
|
|
@@ -2428,22 +2416,22 @@ static int __Pyx_setup_reduce(PyObject* type_obj);
|
|
|
2428
2416
|
#endif
|
|
2429
2417
|
|
|
2430
2418
|
/* TypeImport.proto */
|
|
2431
|
-
#ifndef
|
|
2432
|
-
#define
|
|
2419
|
+
#ifndef __PYX_HAVE_RT_ImportType_proto_3_0_9
|
|
2420
|
+
#define __PYX_HAVE_RT_ImportType_proto_3_0_9
|
|
2433
2421
|
#if defined (__STDC_VERSION__) && __STDC_VERSION__ >= 201112L
|
|
2434
2422
|
#include <stdalign.h>
|
|
2435
2423
|
#endif
|
|
2436
2424
|
#if (defined (__STDC_VERSION__) && __STDC_VERSION__ >= 201112L) || __cplusplus >= 201103L
|
|
2437
|
-
#define
|
|
2425
|
+
#define __PYX_GET_STRUCT_ALIGNMENT_3_0_9(s) alignof(s)
|
|
2438
2426
|
#else
|
|
2439
|
-
#define
|
|
2427
|
+
#define __PYX_GET_STRUCT_ALIGNMENT_3_0_9(s) sizeof(void*)
|
|
2440
2428
|
#endif
|
|
2441
|
-
enum
|
|
2442
|
-
|
|
2443
|
-
|
|
2444
|
-
|
|
2429
|
+
enum __Pyx_ImportType_CheckSize_3_0_9 {
|
|
2430
|
+
__Pyx_ImportType_CheckSize_Error_3_0_9 = 0,
|
|
2431
|
+
__Pyx_ImportType_CheckSize_Warn_3_0_9 = 1,
|
|
2432
|
+
__Pyx_ImportType_CheckSize_Ignore_3_0_9 = 2
|
|
2445
2433
|
};
|
|
2446
|
-
static PyTypeObject *
|
|
2434
|
+
static PyTypeObject *__Pyx_ImportType_3_0_9(PyObject* module, const char *module_name, const char *class_name, size_t size, size_t alignment, enum __Pyx_ImportType_CheckSize_3_0_9 check_size);
|
|
2447
2435
|
#endif
|
|
2448
2436
|
|
|
2449
2437
|
/* FetchSharedCythonModule.proto */
|
|
@@ -25455,15 +25443,15 @@ static int __Pyx_modinit_type_import_code(void) {
|
|
|
25455
25443
|
/*--- Type import code ---*/
|
|
25456
25444
|
__pyx_t_1 = PyImport_ImportModule(__Pyx_BUILTIN_MODULE_NAME); if (unlikely(!__pyx_t_1)) __PYX_ERR(2, 9, __pyx_L1_error)
|
|
25457
25445
|
__Pyx_GOTREF(__pyx_t_1);
|
|
25458
|
-
__pyx_ptype_7cpython_4type_type =
|
|
25446
|
+
__pyx_ptype_7cpython_4type_type = __Pyx_ImportType_3_0_9(__pyx_t_1, __Pyx_BUILTIN_MODULE_NAME, "type",
|
|
25459
25447
|
#if defined(PYPY_VERSION_NUM) && PYPY_VERSION_NUM < 0x050B0000
|
|
25460
|
-
sizeof(PyTypeObject),
|
|
25448
|
+
sizeof(PyTypeObject), __PYX_GET_STRUCT_ALIGNMENT_3_0_9(PyTypeObject),
|
|
25461
25449
|
#elif CYTHON_COMPILING_IN_LIMITED_API
|
|
25462
|
-
sizeof(PyTypeObject),
|
|
25450
|
+
sizeof(PyTypeObject), __PYX_GET_STRUCT_ALIGNMENT_3_0_9(PyTypeObject),
|
|
25463
25451
|
#else
|
|
25464
|
-
sizeof(PyHeapTypeObject),
|
|
25452
|
+
sizeof(PyHeapTypeObject), __PYX_GET_STRUCT_ALIGNMENT_3_0_9(PyHeapTypeObject),
|
|
25465
25453
|
#endif
|
|
25466
|
-
|
|
25454
|
+
__Pyx_ImportType_CheckSize_Warn_3_0_9); if (!__pyx_ptype_7cpython_4type_type) __PYX_ERR(2, 9, __pyx_L1_error)
|
|
25467
25455
|
__Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0;
|
|
25468
25456
|
__Pyx_RefNannyFinishContext();
|
|
25469
25457
|
return 0;
|
|
@@ -29720,10 +29708,10 @@ __PYX_GOOD:
|
|
|
29720
29708
|
#endif
|
|
29721
29709
|
|
|
29722
29710
|
/* TypeImport */
|
|
29723
|
-
#ifndef
|
|
29724
|
-
#define
|
|
29725
|
-
static PyTypeObject *
|
|
29726
|
-
size_t size, size_t alignment, enum
|
|
29711
|
+
#ifndef __PYX_HAVE_RT_ImportType_3_0_9
|
|
29712
|
+
#define __PYX_HAVE_RT_ImportType_3_0_9
|
|
29713
|
+
static PyTypeObject *__Pyx_ImportType_3_0_9(PyObject *module, const char *module_name, const char *class_name,
|
|
29714
|
+
size_t size, size_t alignment, enum __Pyx_ImportType_CheckSize_3_0_9 check_size)
|
|
29727
29715
|
{
|
|
29728
29716
|
PyObject *result = 0;
|
|
29729
29717
|
char warning[200];
|
|
@@ -29777,7 +29765,7 @@ static PyTypeObject *__Pyx_ImportType_3_0_8(PyObject *module, const char *module
|
|
|
29777
29765
|
module_name, class_name, size, basicsize+itemsize);
|
|
29778
29766
|
goto bad;
|
|
29779
29767
|
}
|
|
29780
|
-
if (check_size ==
|
|
29768
|
+
if (check_size == __Pyx_ImportType_CheckSize_Error_3_0_9 &&
|
|
29781
29769
|
((size_t)basicsize > size || (size_t)(basicsize + itemsize) < size)) {
|
|
29782
29770
|
PyErr_Format(PyExc_ValueError,
|
|
29783
29771
|
"%.200s.%.200s size changed, may indicate binary incompatibility. "
|
|
@@ -29785,7 +29773,7 @@ static PyTypeObject *__Pyx_ImportType_3_0_8(PyObject *module, const char *module
|
|
|
29785
29773
|
module_name, class_name, size, basicsize, basicsize+itemsize);
|
|
29786
29774
|
goto bad;
|
|
29787
29775
|
}
|
|
29788
|
-
else if (check_size ==
|
|
29776
|
+
else if (check_size == __Pyx_ImportType_CheckSize_Warn_3_0_9 && (size_t)basicsize > size) {
|
|
29789
29777
|
PyOS_snprintf(warning, sizeof(warning),
|
|
29790
29778
|
"%s.%s size changed, may indicate binary incompatibility. "
|
|
29791
29779
|
"Expected %zd from C header, got %zd from PyObject",
|
|
@@ -30785,7 +30773,7 @@ static PyObject * __Pyx_CyFunction_Vectorcall_FASTCALL_KEYWORDS(PyObject *func,
|
|
|
30785
30773
|
default:
|
|
30786
30774
|
return NULL;
|
|
30787
30775
|
}
|
|
30788
|
-
return ((
|
|
30776
|
+
return ((__Pyx_PyCFunctionFastWithKeywords)(void(*)(void))def->ml_meth)(self, args, nargs, kwnames);
|
|
30789
30777
|
}
|
|
30790
30778
|
static PyObject * __Pyx_CyFunction_Vectorcall_FASTCALL_KEYWORDS_METHOD(PyObject *func, PyObject *const *args, size_t nargsf, PyObject *kwnames)
|
|
30791
30779
|
{
|
|
Binary file
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: pybase16384
|
|
3
|
-
Version: 0.3.
|
|
3
|
+
Version: 0.3.5
|
|
4
4
|
Summary: fast base16384 encode and decode
|
|
5
5
|
Home-page: https://github.com/synodriver/pybase16384
|
|
6
6
|
Author: synodriver
|
|
@@ -14,18 +14,17 @@ Classifier: Topic :: Security :: Cryptography
|
|
|
14
14
|
Classifier: Programming Language :: C
|
|
15
15
|
Classifier: Programming Language :: Cython
|
|
16
16
|
Classifier: Programming Language :: Python
|
|
17
|
-
Classifier: Programming Language :: Python :: 3.6
|
|
18
|
-
Classifier: Programming Language :: Python :: 3.7
|
|
19
17
|
Classifier: Programming Language :: Python :: 3.8
|
|
20
18
|
Classifier: Programming Language :: Python :: 3.9
|
|
21
19
|
Classifier: Programming Language :: Python :: 3.10
|
|
22
20
|
Classifier: Programming Language :: Python :: 3.11
|
|
21
|
+
Classifier: Programming Language :: Python :: 3.12
|
|
23
22
|
Classifier: Programming Language :: Python :: Implementation :: CPython
|
|
24
23
|
Classifier: Programming Language :: Python :: Implementation :: PyPy
|
|
25
24
|
Requires-Python: >=3.6
|
|
26
25
|
Description-Content-Type: text/markdown
|
|
27
26
|
License-File: LICENSE
|
|
28
|
-
Requires-Dist: cffi >=1.0.0
|
|
27
|
+
Requires-Dist: cffi (>=1.0.0)
|
|
29
28
|
|
|
30
29
|
<h1 align="center"><i>✨ pybase16384 ✨ </i></h1>
|
|
31
30
|
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
pybase16384/__init__.py,sha256=rQAzw1fl_zGoAZ7Y_xzcLZJZ908H9aRXT1BXnMnbu50,2429
|
|
2
|
+
pybase16384/backends/__init__.py,sha256=vdW_t1O2WNfdRmxDlEXRvTpyJj5ufKWAUsD2fbtku5g,55
|
|
3
|
+
pybase16384/backends/cffi/build.py,sha256=0lSU8r__QlNrdl3spvwlzzIqnZBcFXJylNZP6tkWEZU,2988
|
|
4
|
+
pybase16384/backends/cffi/_core.pypy39-pp73-darwin.so,sha256=PL4V_9m-VDvmxS8Nw52Dz-gF86M3mYoM4fyGwGIvkh8,52360
|
|
5
|
+
pybase16384/backends/cffi/__init__.py,sha256=RB3eV5PG7rDGj_qPfHio4T9hWvAbw_SOuN7H8bPMxMU,7386
|
|
6
|
+
pybase16384/backends/cython/_core.pypy39-pp73-darwin.so,sha256=EBCilAGgzgdJdjNZXzuCQRlCIXebdOE_Y9yWcKeskzM,210984
|
|
7
|
+
pybase16384/backends/cython/_core.c,sha256=42BkW-X-sW0XpeefIjaXjYXY4bPtdiMizYr23YfdztM,1296338
|
|
8
|
+
pybase16384/backends/cython/__init__.py,sha256=04-hw42BzdNPAKj9N8ZCgFLqw3GALZ8AsYmeyeneyzo,335
|
|
9
|
+
pybase16384/backends/cython/base16384.pxd,sha256=CpYE_Vav4l1n8fAzp0VRr0kEj8JYcQmpTa5-6wpfMHE,2272
|
|
10
|
+
pybase16384/backends/cython/_core.pyx,sha256=9ms8ao_KNaiJVqYxKSiF9W16IOdSwZUNu9ZX5CFFT1E,11482
|
|
11
|
+
pybase16384/backends/cython/_core.pxi,sha256=2fXuRiumLqxO0bnmZVEz0lr_GX-grJGBfhGIVedfyt8,530
|
|
12
|
+
pybase16384-0.3.5.dist-info/RECORD,,
|
|
13
|
+
pybase16384-0.3.5.dist-info/LICENSE,sha256=ixuiBLtpoK3iv89l7ylKkg9rs2GzF9ukPH7ynZYzK5s,35148
|
|
14
|
+
pybase16384-0.3.5.dist-info/WHEEL,sha256=KCEOJDql7y811HhxqWHV1vm-aKRH0FvwJ-gRe9x2Rcw,115
|
|
15
|
+
pybase16384-0.3.5.dist-info/top_level.txt,sha256=kXpl7pWjnjpm74qJP0SJg3JhbiWuwKQApJgkJH0B5Mk,12
|
|
16
|
+
pybase16384-0.3.5.dist-info/METADATA,sha256=KZC4T_3UiJQK1Cj9gDnzGLMHWXDNMPL0q7gQNaiMzic,5387
|
|
@@ -1,16 +0,0 @@
|
|
|
1
|
-
pybase16384/__init__.py,sha256=q5H10ehpHXm2CA1YvuPgkLy99tV9Bap-Wk1bb9tm8iY,2429
|
|
2
|
-
pybase16384/backends/__init__.py,sha256=vdW_t1O2WNfdRmxDlEXRvTpyJj5ufKWAUsD2fbtku5g,55
|
|
3
|
-
pybase16384/backends/cffi/__init__.py,sha256=RB3eV5PG7rDGj_qPfHio4T9hWvAbw_SOuN7H8bPMxMU,7386
|
|
4
|
-
pybase16384/backends/cffi/_core.pypy39-pp73-darwin.so,sha256=Fa2lKQvGOl9qB0P2-zhpvSfzuAyr5LtAouumX7aWaEE,52360
|
|
5
|
-
pybase16384/backends/cffi/build.py,sha256=0lSU8r__QlNrdl3spvwlzzIqnZBcFXJylNZP6tkWEZU,2988
|
|
6
|
-
pybase16384/backends/cython/__init__.py,sha256=04-hw42BzdNPAKj9N8ZCgFLqw3GALZ8AsYmeyeneyzo,335
|
|
7
|
-
pybase16384/backends/cython/_core.c,sha256=jMFsLwOFRoa28r8drNW_zeYeqovA6Xhz6FQs3Vo4NMc,1296687
|
|
8
|
-
pybase16384/backends/cython/_core.pxi,sha256=2fXuRiumLqxO0bnmZVEz0lr_GX-grJGBfhGIVedfyt8,530
|
|
9
|
-
pybase16384/backends/cython/_core.pypy39-pp73-darwin.so,sha256=vJGvKqbphwH_g7jrrqF90bKlDzjHt1ruymOGnGMzaZ8,210984
|
|
10
|
-
pybase16384/backends/cython/_core.pyx,sha256=9ms8ao_KNaiJVqYxKSiF9W16IOdSwZUNu9ZX5CFFT1E,11482
|
|
11
|
-
pybase16384/backends/cython/base16384.pxd,sha256=CpYE_Vav4l1n8fAzp0VRr0kEj8JYcQmpTa5-6wpfMHE,2272
|
|
12
|
-
pybase16384-0.3.4.dist-info/LICENSE,sha256=ixuiBLtpoK3iv89l7ylKkg9rs2GzF9ukPH7ynZYzK5s,35148
|
|
13
|
-
pybase16384-0.3.4.dist-info/METADATA,sha256=_Fo_kq09KpHbNm_7U0sYQxFUJLQ7dRjKivTPT7uDMSY,5434
|
|
14
|
-
pybase16384-0.3.4.dist-info/WHEEL,sha256=NBzbrT-zdI857c6ZtY2k130KX_qqTY2zUha-8fZQdq8,115
|
|
15
|
-
pybase16384-0.3.4.dist-info/top_level.txt,sha256=kXpl7pWjnjpm74qJP0SJg3JhbiWuwKQApJgkJH0B5Mk,12
|
|
16
|
-
pybase16384-0.3.4.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|