Pem Der Convert

Free online PEM to DER converter. Supports certificate, private key, public key and CSR, Base64 to binary, pure frontend, no upload.

Uso

Características

  • PEM(Base64 + -----BEGIN/END-----) ↔ DER(原始二进制)
  • 支持证书/私钥/公钥/CSR/CRL/DH 参数
  • 支持拖放 .der / .cer 文件
  • 4 种转换模式

Casos de uso

  • OpenSSL 转换: openssl x509 -in cert.pem -outform DER -out cert.der
  • 反向: openssl x509 -in cert.der -inform DER -out cert.pem

Agent API Usage

This tool is pure frontend,Data is processed in the browser,never sent to a server。 manifest 中 api_url 为空,/api/pem_der_convert/ 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/pem_der_convert/schema.json

// Step 2: 在浏览器中执行工具逻辑
// PEM/DER 转换 在工具页 JS 中实现