{% extends "base.html" %} {% block title %}Generate Phrase Card - StegoCrypt{% endblock %} {% block content %}
Generate Phrase Card + PIN
{% if not generated %}

Generate your weekly phrase card and static PIN. Customize your security level:

More words = more security, harder to memorize
Same PIN used every day
Estimated phrase+PIN entropy: ~53 bits
Good for most use cases • Reference photo adds ~80-256 bits more
{% else %}
Memorize this information, then close this page! Do not save or screenshot. Refresh to generate new credentials.
YOUR STATIC PIN
{{ pin }}
Use this {{ pin_length }}-digit PIN every day

DAILY PHRASES ({{ words_per_phrase }} words each)
{% for day in days %} {% endfor %}
Day Phrase
{{ day }} {{ phrases[day] }}
Security Summary
{{ phrase_entropy }}
bits/phrase
{{ pin_entropy }}
bits/PIN
{{ total_entropy }}
bits total
+ reference photo (~80-256 bits) = {{ total_entropy + 80 }}+ bits combined
Memorization Tip

Total to memorize: {{ words_per_phrase * 7 }} words + {{ pin_length }} digits

Create a story for each day: "On Monday, the [word1] and [word2] went to see [word3]..."

Generate New Credentials {% endif %}
{% endblock %} {% block scripts %} {% if not generated %} {% endif %} {% endblock %}