Thanks for using this software, for Cofee/Beer/Amazon bill and further development of this project please Share.
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
Asking for donation sound bad to me, so i'm raising fund from by offering all my Nine book for just $9
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