Recent work on Toolcore spread beyond calculators and line editors. Twenty pages landed in Security, Identity, Color, and Media—categories that answer “is this string plausible?” and “what size is this asset?” without opening four different apps.
Security helpers (small but specific)
- SSH fingerprint — paste an
authorized_keysline; read the SHA-256 fingerprint you would expect fromssh-keygen -lf. - Salt generator — random hex bytes for password-hashing parameters.
- otpauth:// parser — inspect issuer, account, and digits from an authenticator enrollment URI (secret shown truncated).
- Base32 encode, MD4 hash, constant-time compare — legacy or educational crypto utilities; pair with the security checks article for JWT and PEM workflows.
Music, serials, and bank codes
Metadata imports fail loudly when one character is wrong. These pages catch shape and checksum issues before rows hit a catalog or CRM.
- ISRC — recording codes for royalty metadata.
- ISSN and ISMN — serial and printed-music identifiers.
- SWIFT/BIC — 8 or 11 character bank codes.
- NSN formatter — NATO stock number grouping.
For broader identifier checks (GTIN, IBAN, UUID), see the Identity tab or the UUID guide.
Color math beyond the hub convert page
- OKLCH to hex and Lab to hex — perceptual coordinates to sRGB.
- CMYK to hex — print percentages to web hex.
- Relative luminance and delta E (CIE76) — WCAG luminance and quick color distance.
For palette building and WCAG pair suggestions, the Color hub and contrast workflow article still cover the day-to-day design path.
Sizing images and SVG
- Megapixel calculator — width × height to MP.
- Print size — pixels and DPI to inches/cm.
- Video bitrate estimate — file size and duration to average Mbps.
- SVG viewBox aspect ratio — normalize icon coordinates.
These complement image resize, image DPI, and the image prep article when you need numbers before editing pixels.
What to do next
Pick one page, load the example, replace with your paste, copy the result back. If you automate reviews, open AI agents for the same routes and prefill rules—humans and assistants should land on identical tool pages.