Compare commits

...

2 commits

Author SHA1 Message Date
38226f149a Fixed Key saving bug 2026-05-15 20:10:08 -04:00
026b18b396 Dependency Adjustment 2026-05-09 15:16:42 -04:00
2 changed files with 2 additions and 3 deletions

View file

@ -37,7 +37,7 @@ def get_from_server_and_save(
if status == True:
# extract:
public_key = public_key_results.get("valid", False)
public_key = public_key_results.get("data", False)
# save it:
did_it_save = write_string_to_text_file(public_key, file_path)

View file

@ -1,6 +1,6 @@
[project]
name = "sp-hydra-veil-core"
version = "2.3.0"
version = "2.3.1"
authors = [
{ name = "Simplified Privacy" },
]
@ -15,7 +15,6 @@ dependencies = [
"cryptography ~= 46.0.3",
"dataclasses-json ~= 0.6.7",
"marshmallow ~= 3.26.1",
"psutil ~= 7.1.3",
"pysocks ~= 1.7.1",
"python-dateutil ~= 2.9.0.post0",
"requests ~= 2.32.5",