惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

D
DataBreaches.Net
有赞技术团队
有赞技术团队
Jina AI
Jina AI
H
Help Net Security
D
Docker
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
Blog — PlanetScale
Blog — PlanetScale
Hugging Face - Blog
Hugging Face - Blog
罗磊的独立博客
MyScale Blog
MyScale Blog
N
Netflix TechBlog - Medium
B
Blog RSS Feed
Martin Fowler
Martin Fowler
WordPress大学
WordPress大学
T
The Blog of Author Tim Ferriss
U
Unit 42
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
MongoDB | Blog
MongoDB | Blog
美团技术团队
M
MIT News - Artificial intelligence
阮一峰的网络日志
阮一峰的网络日志
博客园 - 司徒正美
Microsoft Security Blog
Microsoft Security Blog
IT之家
IT之家

Duende Software Official Site

The Backend for Frontend Pattern Is Now Official IETF Guidance: RFC 10017 Published WhatsApp One-Time Password (OTP) Login with Duende IdentityServer and User Management Planning a Successful Migration from IdentityServer3 to Duende IdentityServer Client Secrets, Mutual TLS and Private Key JWT, Oh My! How To Spell "Duende" Understanding .NET 11 Automatic CSRF Protection: A Guide for Identity Developers Custom Passkey Attestation Policies: Restricting Login to Hardware Keys OAuth Identity Chaining, Transaction Tokens, and Human-in-the-Loop: Summer 2026 Identity Standards Recap What is Identity? - The Question Every Team Should Answer Before Writing Code Security Is a Spectrum: How to Choose Session Lifetimes in Duende IdentityServer Passkeys and WebAuthn with Duende IdentityServer and User Management Authenticating Players in Godot 4 with OAuth 2.0 and OpenID Connect Hardening OAuth in the newest 2026-07-28 MCP Release Candidate Unify Your SAML and OIDC Signing Keys with Automatic Rotation and Duende IdentityServer Duende Software Duende Software Duende Software Duende Software Duende Software Duende Software Duende Software Duende Software Stop AI Bots from Wasting Your Server How Duende IdentityServer Filters Claims (And Why It Matters) Core vs Extended Protocols in Duende IdentityServer v8: What You Get and When You Need More Your IdentityServer v8 Upgrade Checklist: A Quick Pre-Flight Guide Setting Up SAML Single Sign-On in ASP.NET with Duende IdentityServer Your Identity, Your Terms: Duende's Modular Identity Infrastructure and v8.x Release Duende Spring Launch '26: Identity Infrastructure That Expands With You SAML and OpenID Connect (OIDC): Coexistence, Not Competition
Security Lingo Explained: TOTP (Time-based One-Time Passw...
Maarten Balliauw · 2026-08-27 · via Duende Software Official Site

The security space can be a strange and confusing place for newcomers. In this series of posts, we aim to shed light on the security lingo you may encounter when reading the latest security specifications and scanning your favorite Duende documentation. By the end of this post, you'll have added one more security phrase to your growing lexicon of security jargon with which to impress your fellow security professionals.

Today's security lingo is TOTP, so let's discuss what the acronym stands for and where you can see and hear it used.

What is TOTP?

If you grew up in Europe and especially the UK, TOTP might bring back images of Top of the Pops, the legendary BBC music show where artists performed their chart hits in front of a studio audience every Thursday night. For decades, making it onto TOTP meant you'd truly arrived. Sadly, security TOTP involves fewer glitter cannons and more six-digit codes on your phone.

TOTP stands for Time-based One-Time Password. It's an algorithm defined in RFC 6238 that generates a short-lived numeric code from a shared secret and the current time. Because both sides (your authenticator app and the server) know the secret and agree on the time, they independently arrive at the same code without needing to talk to each other.

During setup, the server generates a secret key and shares it with you, usually via a QR code you scan with an Authenticator app like Google Authenticator or Microsoft Authenticator. From that point on, the app takes that secret, combines it with the current 30-second time window, runs it through HMAC-SHA1 (or its stronger siblings SHA-256 and SHA-512, hash algorithms that turn input into a fixed-length fingerprint), and produces a six-digit code. The server does the same math. If the codes match, you're in.

TOTP is a staple of multi-factor authentication (MFA): the "something you have" factor alongside the password you (hopefully) remember. It works offline, doesn't require SMS (which has its own well-documented problems), and is supported on pretty much every platform.

If you're building authentication flows with Duende IdentityServer, Duende User Management provides production-ready TOTP support out of the box. It handles the cryptographic operations, credential storage, and verification logic. Your users scan a QR code once, and from then on they've got a second factor that doesn't depend on cell reception, carrier security, or the postal service.

The main downside? That shared secret needs to stay secret. If an attacker gets hold of it, they can generate valid codes just like you can. So store those secrets carefully, and remind your users that screenshotting their QR code and saving it to a shared Google Drive folder is... not the BCP.

Unlike the BBC show, TOTP codes expire every 30 seconds, and there are no reruns. But that's exactly the point. Now get out there and make sure TOTP is topping the charts in your authentication flows.

We hope you found this post enlightening. If there's other security lingo you're unsure about, please let us know in the comments, and we'll be happy to explain. And while you're here, please take a moment to explore our range of security products and join our community in our public discussions.