A private key is the sole credential for accessing protected resources (such as assets, servers, and communications). Its format is extremely intricate and strict:
-----BEGIN RSA PRIVATE KEY-----) and Base64 encoding of private keys. Even minor character omissions can cause loading failures.This site's tool provides in-depth structured reports by parsing the metadata of private keys:
| Format Name | Typical Characteristics | Application Area |
|---|---|---|
| RSA Private Key | -----BEGIN RSA PRIVATE KEY----- |
SSL/TLS certificates, legacy SSH. |
| PKCS#8 Key | -----BEGIN PRIVATE KEY----- |
Universal key storage standard (Java, Nginx). |
| EC Private Key | -----BEGIN EC PRIVATE KEY----- |
Elliptic Curve Cryptography, mobile secure communication. |
| WIF (Base58) | String starting with 5, K, or L |
Bitcoin, Litecoin, etc., wallet import. |
| Ethereum Hex | 64-character string of 0-9a-f | Ethereum, BSC, Polygon wallets. |