maleo-foundation 0.2.16__py3-none-any.whl → 0.2.17__py3-none-any.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.
- maleo_foundation/client/services/encryption/aes.py +41 -11
- maleo_foundation/client/services/encryption/rsa.py +59 -16
- maleo_foundation/client/services/hash/bcrypt.py +24 -9
- maleo_foundation/client/services/hash/hmac.py +26 -8
- maleo_foundation/client/services/hash/sha256.py +16 -6
- maleo_foundation/client/services/key.py +34 -12
- maleo_foundation/client/services/signature.py +45 -12
- maleo_foundation/client/services/token.py +68 -16
- maleo_foundation/expanded_types/client.py +6 -3
- maleo_foundation/expanded_types/encryption/aes.py +2 -1
- maleo_foundation/expanded_types/encryption/rsa.py +2 -1
- maleo_foundation/expanded_types/general.py +2 -1
- maleo_foundation/expanded_types/hash.py +2 -1
- maleo_foundation/expanded_types/key.py +2 -1
- maleo_foundation/expanded_types/query.py +6 -3
- maleo_foundation/expanded_types/service.py +6 -3
- maleo_foundation/expanded_types/signature.py +2 -1
- maleo_foundation/expanded_types/token.py +2 -1
- maleo_foundation/managers/client/base.py +5 -1
- maleo_foundation/managers/client/google/storage.py +5 -1
- maleo_foundation/managers/client/maleo.py +20 -4
- maleo_foundation/managers/db.py +21 -6
- maleo_foundation/managers/service.py +108 -23
- maleo_foundation/middlewares/authentication.py +35 -8
- maleo_foundation/middlewares/base.py +53 -15
- maleo_foundation/models/table.py +21 -4
- maleo_foundation/models/transfers/parameters/service.py +30 -4
- maleo_foundation/utils/controller.py +23 -6
- maleo_foundation/utils/dependencies/auth.py +14 -4
- maleo_foundation/utils/exceptions.py +21 -6
- maleo_foundation/utils/loaders/credential/google.py +3 -1
- maleo_foundation/utils/query.py +38 -7
- {maleo_foundation-0.2.16.dist-info → maleo_foundation-0.2.17.dist-info}/METADATA +1 -1
- {maleo_foundation-0.2.16.dist-info → maleo_foundation-0.2.17.dist-info}/RECORD +36 -36
- {maleo_foundation-0.2.16.dist-info → maleo_foundation-0.2.17.dist-info}/WHEEL +0 -0
- {maleo_foundation-0.2.16.dist-info → maleo_foundation-0.2.17.dist-info}/top_level.txt +0 -0
@@ -8,45 +8,45 @@ maleo_foundation/types.py,sha256=aKXnIgEhYGSfFqNMGLc4qIKGkINBRpkOo9R9cb2CbwI,241
|
|
8
8
|
maleo_foundation/client/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
9
9
|
maleo_foundation/client/manager.py,sha256=pFWLFYW4eE9MLyFmFS05IgnMBdqqUHbdyTkSbnBtm5E,2620
|
10
10
|
maleo_foundation/client/services/__init__.py,sha256=uIBnAeQ9a2otQbUAbKBQfYrkEUugXjxXoV8W5QYHuic,1051
|
11
|
-
maleo_foundation/client/services/key.py,sha256=
|
12
|
-
maleo_foundation/client/services/signature.py,sha256=
|
13
|
-
maleo_foundation/client/services/token.py,sha256=
|
11
|
+
maleo_foundation/client/services/key.py,sha256=tV2pYjunUPNewUIyGw6eFiDEDsO0WimlSyW7dBJ8NA4,5801
|
12
|
+
maleo_foundation/client/services/signature.py,sha256=dAzkm-NCJlUwnQToS-tKpUkgeuxke6hjt_RYB1zd1lc,5014
|
13
|
+
maleo_foundation/client/services/token.py,sha256=rOs6vdYa0jVXVLMF4csAZyAPcTGyrQD-EXNLChreOso,4944
|
14
14
|
maleo_foundation/client/services/encryption/__init__.py,sha256=qK9-RwivJ2xkMIwXI8XM8LmYboRTX6R3G9Nh3RxSdCM,594
|
15
|
-
maleo_foundation/client/services/encryption/aes.py,sha256=
|
16
|
-
maleo_foundation/client/services/encryption/rsa.py,sha256=
|
15
|
+
maleo_foundation/client/services/encryption/aes.py,sha256=rpXb1NiHq1Cb1ALFolh62uOCNmtbBr2w4hLBWgFaSYw,3884
|
16
|
+
maleo_foundation/client/services/encryption/rsa.py,sha256=_DxP33AxKFcLm5_BCgdI5vlbASCvbIA8NsO-6bAC1o8,5376
|
17
17
|
maleo_foundation/client/services/hash/__init__.py,sha256=A4Olb-RpeNFQEfToU9t8LfZ8e2WXeR8c_grot-JCFjI,756
|
18
|
-
maleo_foundation/client/services/hash/bcrypt.py,sha256=
|
19
|
-
maleo_foundation/client/services/hash/hmac.py,sha256
|
20
|
-
maleo_foundation/client/services/hash/sha256.py,sha256=
|
18
|
+
maleo_foundation/client/services/hash/bcrypt.py,sha256=Lc2FGR2oQj5yuq4mHer5NnFjhw-IuPuBp_EijLsOaCk,2231
|
19
|
+
maleo_foundation/client/services/hash/hmac.py,sha256=-L0sTv5tcmfu-UyBD_InpxFJ2w738M76HYmeRg30Yao,2358
|
20
|
+
maleo_foundation/client/services/hash/sha256.py,sha256=af08036kkEZ61IY_ktxwHmQnAACd6hWXYA_ZC9S1-tg,2142
|
21
21
|
maleo_foundation/expanded_types/__init__.py,sha256=lm_r7rxlLA0sgSTGQBMR9ZbZbVDpD7Te-UYb3oRVi1g,364
|
22
|
-
maleo_foundation/expanded_types/client.py,sha256=
|
23
|
-
maleo_foundation/expanded_types/general.py,sha256=
|
24
|
-
maleo_foundation/expanded_types/hash.py,sha256=
|
25
|
-
maleo_foundation/expanded_types/key.py,sha256=
|
26
|
-
maleo_foundation/expanded_types/query.py,sha256=
|
27
|
-
maleo_foundation/expanded_types/service.py,sha256=
|
28
|
-
maleo_foundation/expanded_types/signature.py,sha256=
|
29
|
-
maleo_foundation/expanded_types/token.py,sha256=
|
22
|
+
maleo_foundation/expanded_types/client.py,sha256=WvT911cDsfWtCCYVaDeQ90ba_eCYnzC-CRSXCHtLIuo,2414
|
23
|
+
maleo_foundation/expanded_types/general.py,sha256=_nSG5jgMgA1ntjBdVjQqkg0h1WNytLsIqkUrsKDmrfU,832
|
24
|
+
maleo_foundation/expanded_types/hash.py,sha256=QOH_HczGY7CRUZJ5gC84RunCAiUzNSt7DYXI7uqtwkM,416
|
25
|
+
maleo_foundation/expanded_types/key.py,sha256=qopQcO6V82RxiCtixe--IBce5MRT4buOun4RSA-LLm0,573
|
26
|
+
maleo_foundation/expanded_types/query.py,sha256=ritR1xdNG7zTMhhZwnQvsT6Q_WBEhh84io6iLtYGU2Q,2402
|
27
|
+
maleo_foundation/expanded_types/service.py,sha256=9LxwJHSBTgqOGD2CiV3gsRp1EbLB793jrTNGgCtrbjk,2434
|
28
|
+
maleo_foundation/expanded_types/signature.py,sha256=RgMU7MHADfVwSlGezjBcHXJiPwfnJb5ovuJ93qFRps0,451
|
29
|
+
maleo_foundation/expanded_types/token.py,sha256=xsy2F8Mzba1sPztBHL9J3DWv79QP8P3vqPwXahEG5mA,427
|
30
30
|
maleo_foundation/expanded_types/encryption/__init__.py,sha256=yvqKW_VprQP_3YSL-AyqNV6011dvA45HcmZdvfadZX4,303
|
31
|
-
maleo_foundation/expanded_types/encryption/aes.py,sha256=
|
32
|
-
maleo_foundation/expanded_types/encryption/rsa.py,sha256=
|
31
|
+
maleo_foundation/expanded_types/encryption/aes.py,sha256=1rj43qjIO0TePpr1mErT_NJnqFZSgMM9gybfFxsTams,488
|
32
|
+
maleo_foundation/expanded_types/encryption/rsa.py,sha256=Esf_H8nMz2kOLAWa3M7dlD-sFdFIZylNjB_qB20Yaww,488
|
33
33
|
maleo_foundation/managers/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
34
|
-
maleo_foundation/managers/db.py,sha256=
|
34
|
+
maleo_foundation/managers/db.py,sha256=cpY1IOiUytT9XXYtzS0E9OSYOuB7jBKo0XHe__uI1Jg,5340
|
35
35
|
maleo_foundation/managers/middleware.py,sha256=ODIQU1Hpu-Xempjjo_VRbVtxiD5oi74mNuoWuDawRh0,4250
|
36
|
-
maleo_foundation/managers/service.py,sha256=
|
36
|
+
maleo_foundation/managers/service.py,sha256=i0wFQ38GaUF1GueWP-3iFAGBzfI_zSrCQQsPwGumdbM,17098
|
37
37
|
maleo_foundation/managers/client/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
38
|
-
maleo_foundation/managers/client/base.py,sha256=
|
39
|
-
maleo_foundation/managers/client/maleo.py,sha256=
|
38
|
+
maleo_foundation/managers/client/base.py,sha256=AlMsdxIsu2U8BLT2SyEXC7YQXDZjVPZfEmHvV_IUv18,4430
|
39
|
+
maleo_foundation/managers/client/maleo.py,sha256=pY3285ZjFttte0uN3x3AmqaoCTeFOhXvuI4GbuPbDkQ,2140
|
40
40
|
maleo_foundation/managers/client/google/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
41
41
|
maleo_foundation/managers/client/google/base.py,sha256=eIdd6C2BFIu4EyZ1j017VZaJn_nSTPGFftBwQmVAUDA,1366
|
42
42
|
maleo_foundation/managers/client/google/secret.py,sha256=Ski1CHYeA8vjSk2Oc2Pf4CfFrzT_RcA6NEZwza7gM7Y,4464
|
43
|
-
maleo_foundation/managers/client/google/storage.py,sha256=
|
44
|
-
maleo_foundation/middlewares/authentication.py,sha256=
|
45
|
-
maleo_foundation/middlewares/base.py,sha256=
|
43
|
+
maleo_foundation/managers/client/google/storage.py,sha256=ECyEBgEvvbTDVfqXey-meGnoU4qvIRU32BxbCuzcaHU,2576
|
44
|
+
maleo_foundation/middlewares/authentication.py,sha256=y3FEvcB8I8piCQIvvDRl2F2tCmspOVJx3jrSGI6HPn4,4702
|
45
|
+
maleo_foundation/middlewares/base.py,sha256=fVuSAcO6QgFbh7-bbZLx1cKEFfCBXZ4K3s1_aWpJuG0,15262
|
46
46
|
maleo_foundation/middlewares/cors.py,sha256=9uvBvY2N6Vxa9RP_YtESxcWo6Doi6uS0lzAG9iLY7Uc,2288
|
47
47
|
maleo_foundation/models/__init__.py,sha256=AaKehO7c1HyKhoTGRmNHDddSeBXkW-_YNrpOGBu8Ms8,246
|
48
48
|
maleo_foundation/models/responses.py,sha256=iKJs9EFemCuUOc-IxEUwjX9RgNnPf-mw7yGheCGyVDA,4896
|
49
|
-
maleo_foundation/models/table.py,sha256=
|
49
|
+
maleo_foundation/models/table.py,sha256=tcOwj_Heqi6ode8rbD4eeSiixEYsAtUaUyJyqrYaMAw,1327
|
50
50
|
maleo_foundation/models/schemas/__init__.py,sha256=Xj8Ahsqyra-fmEaVcGPok5GOOsPQlKcknHYMvbjvENA,277
|
51
51
|
maleo_foundation/models/schemas/encryption.py,sha256=KYs2P57AqWpEROuqTuSuyt1Zk-jsIUKFeRWIfSwem74,658
|
52
52
|
maleo_foundation/models/schemas/general.py,sha256=YQ2d3MxkraNkWO-QD3xAChnOsUVzzbVjNVi8iTDtzmk,4174
|
@@ -65,7 +65,7 @@ maleo_foundation/models/transfers/parameters/__init__.py,sha256=oKW4RPIEISISRjsJ
|
|
65
65
|
maleo_foundation/models/transfers/parameters/client.py,sha256=3X1iCThKr72_vds4gdldB0YxTlXoLTF1rGbsXyjyBpg,4051
|
66
66
|
maleo_foundation/models/transfers/parameters/general.py,sha256=WoekZJCIoAllhXdRIJkNRdNq0QEIn0bteiHJLtzkCxU,579
|
67
67
|
maleo_foundation/models/transfers/parameters/key.py,sha256=ZhWcbPJZvl8AF_qlecG-4-9_Ym6EbU7nngRo3AtbScY,432
|
68
|
-
maleo_foundation/models/transfers/parameters/service.py,sha256=
|
68
|
+
maleo_foundation/models/transfers/parameters/service.py,sha256=i8kxWZc0MKRZgXBT65YnuuE0m3pnXHn787UzEtmtyRk,6266
|
69
69
|
maleo_foundation/models/transfers/parameters/signature.py,sha256=ysYkALwqNXn13HP8xUOnPlboL9pgFLmQ9f7OpZe9dDw,483
|
70
70
|
maleo_foundation/models/transfers/parameters/token.py,sha256=kIUhz86-9qEiWxZXIva33-iIdHDS9ca-_7SDvgOxitw,623
|
71
71
|
maleo_foundation/models/transfers/parameters/encryption/__init__.py,sha256=w1-J_cVp8vPUVaAkTEpTTZ5S6R2wKxpqKj1Eu2cj-w0,322
|
@@ -93,24 +93,24 @@ maleo_foundation/models/transfers/results/service/query.py,sha256=xHHPWCYx6NrKK9
|
|
93
93
|
maleo_foundation/models/transfers/results/service/controllers/__init__.py,sha256=HZJWMy2dskzOCzLmp_UaL9rjbQ-sDMI7sd2bXb-4QOU,175
|
94
94
|
maleo_foundation/models/transfers/results/service/controllers/rest.py,sha256=wCuFyOTQkuBs2cqjPsWnPy0XIsCfMqGByhrSy57qp7Y,1107
|
95
95
|
maleo_foundation/utils/__init__.py,sha256=SRPEVoqjZoO6W8rtF_Ti8VIangg6Auwm6eHbZMdOthY,520
|
96
|
-
maleo_foundation/utils/controller.py,sha256=
|
97
|
-
maleo_foundation/utils/exceptions.py,sha256=
|
96
|
+
maleo_foundation/utils/controller.py,sha256=3n9HcWHqywLhfpgTkzd_NrjWNJgTwGBSokqGgJKeBAU,4132
|
97
|
+
maleo_foundation/utils/exceptions.py,sha256=CXmD2Rz71OCcPyVp-GzXFpEwPDDrrjJ02o7Eqf6JI9o,4239
|
98
98
|
maleo_foundation/utils/extractor.py,sha256=SZXVYDHWGaA-Dd1BUydwF2HHdZqexEielS4CjL0Ceng,814
|
99
99
|
maleo_foundation/utils/logging.py,sha256=W5Fhk_xAXVqSujaY8mv3hRH4wlQSpUn4ReuMoiKcQa4,7759
|
100
100
|
maleo_foundation/utils/mergers.py,sha256=DniUu3Ot4qkYH_YSw4uD1cn9cfirum4S_Opp8fMkQwA,702
|
101
|
-
maleo_foundation/utils/query.py,sha256=
|
101
|
+
maleo_foundation/utils/query.py,sha256=OQJNf42XeIh-J6tBa_f8iX-UoAib1vg_z8LsVE3zfGk,4739
|
102
102
|
maleo_foundation/utils/dependencies/__init__.py,sha256=0KKGrdfj8Cc5A4SRk_ZBAxzOP795Mizdb4zIBh07KC4,122
|
103
|
-
maleo_foundation/utils/dependencies/auth.py,sha256=
|
103
|
+
maleo_foundation/utils/dependencies/auth.py,sha256=wS9qnmd1n2WsFhiSfyq_3Io3wwZKTENVPv4rMwxJslE,727
|
104
104
|
maleo_foundation/utils/formatter/__init__.py,sha256=iKf5YCbEdg1qKnFHyKqqcQbqAqEeRUf8mhI3v3dQoj8,78
|
105
105
|
maleo_foundation/utils/formatter/case.py,sha256=TmvvlfzGdC_omMTB5vAa40TZBxQ3hnr-SYeo0M52Rlg,1352
|
106
106
|
maleo_foundation/utils/loaders/__init__.py,sha256=P_3ycGfeDXFjAi8bE4iLWHxBveqUIdpHgGv-klRWM3s,282
|
107
107
|
maleo_foundation/utils/loaders/json.py,sha256=8e3qe1TyL-jaJVuiQJpVHKDBS2n_CGJPGv8Ci6cK42Y,506
|
108
108
|
maleo_foundation/utils/loaders/yaml.py,sha256=8cZWOYuDTAFNrLsUlz7IGyOrtR4oL-tk-jc7q_7nq8Q,501
|
109
109
|
maleo_foundation/utils/loaders/credential/__init__.py,sha256=qopTKvcMVoTFwyRijeg7rejnG4I684FjUwh70tvhtVM,141
|
110
|
-
maleo_foundation/utils/loaders/credential/google.py,sha256=
|
110
|
+
maleo_foundation/utils/loaders/credential/google.py,sha256=SKsqPuFnAiCcYLf24CxKnMybhVHpgqnq1gGSlThqjts,994
|
111
111
|
maleo_foundation/utils/loaders/key/__init__.py,sha256=hVygcC2ImHc_aVrSrOmyedR8tMUZokWUKCKOSh5ctbo,106
|
112
112
|
maleo_foundation/utils/loaders/key/rsa.py,sha256=gDhyX6iTFtHiluuhFCozaZ3pOLKU2Y9TlrNMK_GVyGU,3796
|
113
|
-
maleo_foundation-0.2.
|
114
|
-
maleo_foundation-0.2.
|
115
|
-
maleo_foundation-0.2.
|
116
|
-
maleo_foundation-0.2.
|
113
|
+
maleo_foundation-0.2.17.dist-info/METADATA,sha256=gN-rh6E4b0Gu7uEDHIW3pvvNSuDRskCDjOyS22ZDq1s,3419
|
114
|
+
maleo_foundation-0.2.17.dist-info/WHEEL,sha256=Nw36Djuh_5VDukK0H78QzOX-_FQEo6V37m3nkm96gtU,91
|
115
|
+
maleo_foundation-0.2.17.dist-info/top_level.txt,sha256=_iBos3F_bhEOdjOnzeiEYSrCucasc810xXtLBXI8cQc,17
|
116
|
+
maleo_foundation-0.2.17.dist-info/RECORD,,
|
File without changes
|
File without changes
|