From fc1300d7386e5b2d2d625d4db1ad014642a0e516 Mon Sep 17 00:00:00 2001 From: "Aaron D. Lee" Date: Sat, 27 Dec 2025 23:33:42 -0500 Subject: [PATCH] Looks like it kinda works. --- frontends/cli/main.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/frontends/cli/main.py b/frontends/cli/main.py index 05575ae..6cb80d2 100644 --- a/frontends/cli/main.py +++ b/frontends/cli/main.py @@ -144,7 +144,7 @@ def generate(pin, rsa, pin_length, rsa_bits, words, output, password, as_json): encrypted_pem = export_rsa_key_pem(private_key, password) Path(output).write_bytes(encrypted_pem) click.secho(f" Saved to: {output}", fg='bright_white') - click.secho(f" Password: {'*' * len(password)}", fg='dim') + click.secho(f" Password: {'*' * len(password)}", dim=True) else: click.echo(creds.rsa_key_pem) click.echo() @@ -156,7 +156,7 @@ def generate(pin, rsa, pin_length, rsa_bits, words, output, password, as_json): if creds.rsa_key_pem: click.echo(f" RSA entropy: {creds.rsa_entropy} bits") click.echo(f" Combined: {creds.total_entropy} bits") - click.secho(f" + photo entropy: 80-256 bits", fg='dim') + click.secho(f" + photo entropy: 80-256 bits", dim=True) click.echo() except Exception as e: