Google Workspace default selector
Input: example.com / google
Output: v=DKIM1; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAA... → 2048-bit RSA, healthy
500+ fast, free tools. Most run in your browser only; Image & PDF tools upload files to the backend when you run them.
Fetch a DKIM TXT record at <selector>._domainkey.<domain>, parse the public key tags, infer key length, and warn about short keys, revoked keys, or testing flags.
The DKIM Record Checker fetches the TXT record at <selector>._domainkey.<domain> (RFC 6376), where DKIM publishes its public key. You provide the domain plus the selector your platform uses (Google Workspace uses google; SendGrid uses s1/s2; Mailchimp uses k1). The tool decodes the base64 public key in the p= tag, infers its RSA key length, and warns when the key is shorter than the 2048-bit minimum recommended by RFC 8301. It also flags revoked selectors (empty p=) and testing mode (t=y), where receivers may treat failures as benign rather than enforcing. Because DKIM is the only one of SPF, DKIM, and DMARC that survives mail forwarding intact, a correct DKIM key is essential for newsletters, group lists, and any high-volume sender. Use this to confirm a new selector is live, debug failed signatures after a DNS change, and verify vendors aren't publishing 1024-bit keys.
Input: example.com / google
Output: v=DKIM1; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAA... → 2048-bit RSA, healthy
Input: example.com / mailchimp-old
Output: v=DKIM1; k=rsa; p= → empty public key, selector revoked
Input: staging.example.com / s1
Output: v=DKIM1; t=y; k=rsa; p=... → t=y testing flag is active, failures won't enforce