Skip to main content

hardguard25

Python reference implementation of HardGuard25 — an open standard for human-safe identifiers.

0 1 2 3 4 5 6 7 8 9 A C D F G H J K M N P R U W Y

HardGuard25 is a 25-character alphabet designed so every symbol is visually distinct in common identifier contexts, including dyslexia-sensitive workflows. It removes 11 letters that cause real-world errors (I L O B S Z E T V X Q) so IDs survive handwriting, phone calls, OCR, and support tickets with fewer corrections. When a letter and a digit compete for the same visual slot, the digit always wins.

Install

pip install hardguard25

Requires Python 3.9+.

Quickstart

from hardguard25 import generate, validate, normalize, check_digit, verify_check_digit

generate(8)                       # e.g. "AC3H7PUW"
generate(8, check_digit=True)     # e.g. "AC3H7PUWN"  (length+1)

validate("ac3h-7puw")             # True  (case and separators tolerated)
normalize("ac3h-7puw")            # "AC3H7PUW"

check_digit("AC3H7PUW")           # "N"
verify_check_digit("AC3H7PUWN")   # True

API

Function Purpose
generate(length, *, check_digit=False) Cryptographically secure random ID using rejection sampling for uniform distribution
validate(s) True if s normalizes to a valid HardGuard25 ID; never raises
normalize(s) Trim, uppercase, strip - _ . and spaces; raises ValueError on invalid chars
check_digit(code) Mod-25 weighted check digit for manual-entry error detection
verify_check_digit(code) Strip last char, recompute, compare
ALPHABET "0123456789ACDFGHJKMNPRUWY"

Type hints and py.typed marker included.

Sizing

Each character carries log2(25) = 4.64 bits of entropy.

Length Bits Unique IDs Typical Use
4 18.6 390,625 Small inventory, tickets
5 23.2 9,765,625 Small business
6 27.9 244,140,625 Medium businesses
7 32.5 6.1 billion Large catalogs
8 37.2 152.6 billion Large systems
12 55.7 5.96 × 10¹⁶ Internal tokens
16 74.2 3.55 × 10²² Cross-system IDs
20 92.8 2.11 × 10²⁷ Public tokens
22 102.1 1.32 × 10³⁰ Internet-scale

Recommended defaults:

  • 16 for internal systems up to millions of IDs
  • 20 for public tokens or cross-org use
  • 22 for long-lived, internet-scale identifiers

See the spec for collision-bound tables.

Implementation guidance

For project integration guidance, see:

When NOT to Use HardGuard25

  • Cryptographic keys (use proper key derivation)
  • Blockchain consensus (use domain-specific formats)
  • Systems requiring global UUID guarantees (use UUIDv7 or ULID)
  • Machine-only contexts where no human ever sees the ID

Reference

License

MIT

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

hardguard25-1.3.5.tar.gz (8.3 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

hardguard25-1.3.5-py3-none-any.whl (6.2 kB view details)

Uploaded Python 3

File details

Details for the file hardguard25-1.3.5.tar.gz.

File metadata

  • Download URL: hardguard25-1.3.5.tar.gz
  • Upload date:
  • Size: 8.3 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.14

File hashes

Hashes for hardguard25-1.3.5.tar.gz
Algorithm Hash digest
SHA256 90fa781bd486c2ffb262c6e3e1d1e2aef2ba93386d5176b839523fcc954a3f80
MD5 e79d344715d643e345378b35d2dafc0e
BLAKE2b-256 a0749295bcb38dfafbc64f2666d4d430cf32ab25c7db6daa6ab154b8b496488e

See more details on using hashes here.

File details

Details for the file hardguard25-1.3.5-py3-none-any.whl.

File metadata

  • Download URL: hardguard25-1.3.5-py3-none-any.whl
  • Upload date:
  • Size: 6.2 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.14

File hashes

Hashes for hardguard25-1.3.5-py3-none-any.whl
Algorithm Hash digest
SHA256 9d227afc0745a45bd12e0b961912c6e37fbc913daa763c7860bd6e47a2447aa7
MD5 a0b45036e723955a259b34d7e152ae71
BLAKE2b-256 d2596c3e05ba3ef93d04648aa45bb6f8c9cfd707403a0c625883b7276ba911e5

See more details on using hashes here.

Release history Release notifications | RSS feed

1.3.6

2 files

This release

1.3.5 This release

2 files

1.3.4

2 files

1.3.3

2 files

1.3.1

2 files

1.3.0

2 files

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page