TOTP & HOTP

TOTP (tidsbaseret engangskode, RFC 6238) og HOTP (HMAC-baseret engangskode, RFC 4226) er de to RFC'er, som enhver 2FA-tilmeldings-QR implementerer. Det kodede URI-skema otpauth:// er Google Authenticators de facto-standard, universelt i enhver større autentificeringsapp.

TOTP-specifikation:RFC 6238 (time-based, 2011).
HOTP-specifikation:RFC 4226 (counter-based, 2005).
URI-skema:Google Authenticator Key URI Format, the format every authenticator agrees on.

Hvad det er

En 2FA-tilmeldings-QR er en URL i otpauth://-skemaet, der bærer den delte hemmelighed og identificerende metadata. Format:

otpauth://TYPE/LABEL?secret=SECRET&issuer=ISSUER&algorithm=ALG&digits=N&period=SEC

Kanoniske testvektorer

CaseInputsExpected otpauth:// URI
TOTP, minimal (SHA1, 6 digits, 30 s)issuer=GitHub
account=alice@example.com
secret=JBSWY3DPEHPK3PXP
otpauth://totp/GitHub:alice@example.com?secret=JBSWY3DPEHPK3PXP&issuer=GitHub
TOTP, SHA256, 8 digitsissuer=Corp
account=bob
secret=JBSWY3DPEHPK3PXP
algorithm=SHA256
digits=8
otpauth://totp/Corp:bob?secret=JBSWY3DPEHPK3PXP&issuer=Corp&algorithm=SHA256&digits=8
HOTP, counter=0issuer=YubiKey
account=carol
secret=JBSWY3DPEHPK3PXP
counter=0
otpauth://hotp/YubiKey:carol?secret=JBSWY3DPEHPK3PXP&issuer=YubiKey&counter=0
TOTP, RFC 6238 reference secretissuer=Example
account=test
secret=GEZDGNBVGY3TQOJQGEZDGNBVGY3TQOJQ
digits=8
Standard RFC test secret (12345678901234567890). Produces TOTP 94287082 at T=59 s.

Live Base32-hemmelighedsvalidator

Autentificeringsapps afviser hemmeligheder, der indeholder noget uden for Base32-alfabetet (A-Z, 2-7). Nedenfor er den samme validator, som Abundera kører indlejret i TOTP-generatoren, kører i din browser.

Indtast en hemmelighed for at validere.

Almindelige faldgruber

Autentificeringskompatibilitet

AppTOTP SHA1TOTP SHA256/512HOTP8-digitNotes
Google AuthenticatorYesIgnoredYesIgnoredThe de facto baseline. Always targets this first.
1PasswordYesYesYesYesFull RFC support.
AuthyYesYesNoYesDrops HOTP in newer versions.
BitwardenYesYesYesYesFull RFC support.
Microsoft AuthenticatorYesYesYesYesFull RFC support.
YubiKey AuthenticatorYesYesYesYesHOTP is the canonical YubiKey mode.
Duo MobileYesIgnoredNoIgnoredUses its own push flow; TOTP is fallback only.

Se også

Specifikationsreferencer verificeret 2026-04-18. RFC 6238 (2011), RFC 4226 (2005), Google Key URI Format.