Unable to set aad is none #233
Unanswered
RaveenRasaiya
asked this question in
Q&A
Replies: 1 comment 1 reply
-
aad is None by default, there is nothing you need to do. |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hi All,
Thank you for great library and I am trying to create JWE payload for robot test using below code,
protected_header = {
"alg":"RSA1_5",
"enc":"A128GCM"
}
jwetoken = jwe.JWE(payload.encode('utf-8'),
recipient=public_key,
protected=protected_header)
enc = jwetoken.serialize(compact=True)
I want to set aad should be None . Why it is not supported
Thanks
Beta Was this translation helpful? Give feedback.
All reactions