Instead of directly asking for donations, I'm thrilled to offer you all nine of my books for just $9 on leanpub By grabbing this bundle you not only help cover my coffee, beer, and Amazon bills but also play a crucial role in advancing and refining this project. Your contribution is indispensable, and I'm genuinely grateful for your involvement in this journey!
Any private key value that you enter or we generate is not stored on this site, this tool is provided via an HTTPS URL to ensure that private keys cannot be stolen, for extra security run this software on your network, no cloud dependency
A JSON object that represents a cryptographic key. The members of the object represent properties of the key, including its value.
Example JWK
{
"kty":"EC",
"crv":"P-256",
"x":"f83OJ3D2xF1Bg8vub9tLe1gHMzV76e8Tus9uPHvRVEU",
"y":"x_FEzRu9m36HLN_tue659LNpXW6pCyStikYjKIWI5a0",
"kid":"Id that can be uniquely Identified"
}
The kty (key type) parameter identifies the cryptographic algorithm family used with the key, such as RSA or EC
n
: Base64 URL encoded string representing the modulus
of the RSA Key.e
: Base64 URL encoded string representing the public exponent
of the RSA Key.d
: Base64 URL encoded string representing the private exponent
of the RSA Key.p
: Base64 URL encoded string representing the secret prime factor
of the RSA Key.q
: Base64 URL encoded string representing the secret prime factor
of the RSA Key.dp
: Base64 URL encoded string representing the first factor CRT exponent
of the RSA Key. d mod (p-1)
dq
: Base64 URL encoded string representing the second factor CRT exponent
of the RSA Key. d mod (q-1)
qi
: Base64 URL encoded string representing the first CRT coefficient
of the RSA Key. q^-1 mod p