What does "e": "AQAB"
mean in JWKS - Json Web Key Set
{
"keys": [
{
"kty": "RSA", #key type
"e": "AQAB", #Question - what does "e" mean or stand for. And what values can e take. What is AQAB here.
"use": "sig", #verify client assertion signature. This means what is the use of the key. Answer - to verify signature. Right?
"kid": "somebase64encodestring", #key id
"alg": "RS256", #key algoritham. Here it is RSA.
"n": "anotherbase64encodestring" #This is the actual public key base64 encoded.
}
]
}
"e": "AQAB"
be inferred from public key. I think yes. Then why specify it explicitly in the jwks. What is the extra benefit or requirement. – Dong