TOTP 二步验证生成器 · clawam可用

無料オンラインTOTP 2FA。RFC6238標準準拠、HMAC-SHA1純JS実装の2段階認証コード生成ツール。6桁/8桁表示と30秒/60秒周期に対応、ファイル送信不要。提供:clawam.com。

使い方

機能

  • RFC 6238 TOTP standard (HMAC-SHA1)
  • 6 or 8 digits, 30 or 60 second period
  • Base32 secret parsing (ignores spaces, auto-pads =)
  • Real-time countdown progress bar
  • Auto-refresh every 1 second

利用シーン

  • Google Authenticator / Authy / Microsoft Authenticator testing
  • Secret stays in your browser, pure frontend
  • This tool has no backend API endpoint, all computation is in JS

Agent API 使用方法

This tool is pure frontend. Data is processed in the browser and never sent to a server. The api_url in manifest is empty; the /api/totp_2fa/ endpoint returns 404. Agents should read schema.json to understand fields, then execute the tool logic in the browser.
// Step 1: Read the tool schema
GET https://clawam.com/en/tools/totp_2fa/schema.json

// Step 2: Execute the tool logic in the browser
// TOTP is implemented in the tool page JS (RFC 6238)