mirror of
https://github.com/PR0M3TH3AN/SeedPass.git
synced 2025-09-08 07:18:47 +00:00
Fix test profile sync fingerprint
This commit is contained in:
@@ -364,8 +364,10 @@ python scripts/generate_test_profile.py --profile my_profile --count 100
|
|||||||
```
|
```
|
||||||
|
|
||||||
This command creates `~/.seedpass/my_profile` if needed and adds 100 example entries.
|
This command creates `~/.seedpass/my_profile` if needed and adds 100 example entries.
|
||||||
After populating the vault, the script now automatically publishes the encrypted
|
After populating the vault, the script prints the derived **fingerprint** and
|
||||||
index to Nostr so the data can be retrieved on other devices.
|
automatically publishes the encrypted index to Nostr under that fingerprint.
|
||||||
|
Use the same seed phrase when loading SeedPass so it can retrieve the data from
|
||||||
|
Nostr.
|
||||||
|
|
||||||
### Automatically Updating the Script Checksum
|
### Automatically Updating the Script Checksum
|
||||||
|
|
||||||
|
@@ -30,6 +30,7 @@ from password_manager.config_manager import ConfigManager
|
|||||||
from password_manager.backup import BackupManager
|
from password_manager.backup import BackupManager
|
||||||
from password_manager.entry_management import EntryManager
|
from password_manager.entry_management import EntryManager
|
||||||
from nostr.client import NostrClient
|
from nostr.client import NostrClient
|
||||||
|
from utils.fingerprint import generate_fingerprint
|
||||||
import asyncio
|
import asyncio
|
||||||
|
|
||||||
DEFAULT_PASSWORD = "testpassword"
|
DEFAULT_PASSWORD = "testpassword"
|
||||||
@@ -125,8 +126,11 @@ def main() -> None:
|
|||||||
args = parser.parse_args()
|
args = parser.parse_args()
|
||||||
|
|
||||||
seed, entry_mgr, dir_path = initialize_profile(args.profile)
|
seed, entry_mgr, dir_path = initialize_profile(args.profile)
|
||||||
|
fingerprint = generate_fingerprint(seed)
|
||||||
print(f"Using profile directory: {dir_path}")
|
print(f"Using profile directory: {dir_path}")
|
||||||
print(f"Parent seed: {seed}")
|
print(f"Parent seed: {seed}")
|
||||||
|
if fingerprint:
|
||||||
|
print(f"Fingerprint: {fingerprint}")
|
||||||
populate(entry_mgr, seed, args.count)
|
populate(entry_mgr, seed, args.count)
|
||||||
print(f"Added {args.count} entries.")
|
print(f"Added {args.count} entries.")
|
||||||
|
|
||||||
@@ -134,7 +138,7 @@ def main() -> None:
|
|||||||
if encrypted:
|
if encrypted:
|
||||||
client = NostrClient(
|
client = NostrClient(
|
||||||
entry_mgr.vault.encryption_manager,
|
entry_mgr.vault.encryption_manager,
|
||||||
dir_path.name,
|
fingerprint or dir_path.name,
|
||||||
parent_seed=seed,
|
parent_seed=seed,
|
||||||
)
|
)
|
||||||
asyncio.run(client.publish_snapshot(encrypted))
|
asyncio.run(client.publish_snapshot(encrypted))
|
||||||
|
Reference in New Issue
Block a user