Add PGP UI integration

This commit is contained in:
thePR0M3TH3AN
2025-07-04 18:27:45 -04:00
parent 314caea95b
commit e5bb54240f
4 changed files with 45 additions and 6 deletions

View File

@@ -731,7 +731,8 @@ def display_menu(
print("2. 2FA (TOTP)")
print("3. SSH Key")
print("4. Seed Phrase")
print("5. Back")
print("5. PGP Key")
print("6. Back")
sub_choice = input("Select entry type: ").strip()
password_manager.update_activity()
if sub_choice == "1":
@@ -747,6 +748,9 @@ def display_menu(
password_manager.handle_add_seed()
break
elif sub_choice == "5":
password_manager.handle_add_pgp()
break
elif sub_choice == "6":
break
else:
print(colored("Invalid choice.", "red"))