RSA Sign 검증

Free online RSA sign and verify tool. Supports SHA-256/384/512 with PKCS#1 v1.5 padding via pure-JS Web Crypto API, no upload.

사용법

기능

  • RSA 签名(私钥 → 签名)和验签(公钥 + 签名 + 消息 → true/false)
  • PKCS#1 v1.5 padding + SHA-256/384/512
  • PEM 私钥/公钥自动解析(支持 PKCS#1 和 PKCS#8)
  • 2048 bit 及以上密钥支持(小密钥测试用)
  • 支持验签常量时间比较

활용 사례

  • API 请求签名 / JWT 签名 / 文档签名
  • 私钥在浏览器内运算,不上传(本工具不发起任何网络请求)

나이nt API 사용법

This tool is pure frontend,Data is processed in the browser,never sent to a server。 manifest 中 api_url 为空,/api/rsa_sign_verify/ endpoint does not exist(返回 404)。 Agent 请读取 schema.json 理解字段,Please execute the tool logic in the browser first。
// Step 1: 读取工具 Schema
GET https://clawam.com/tools/rsa_sign_verify/schema.json

// Step 2: 在浏览器中执行工具逻辑
// RSA 在工具页 JS 中实现 (Web Crypto API)