Sample code for 30+ languages & platforms
Chilkat2-Python

Get a JWS Unprotected Header

See more JSON Web Signatures (JWS) Examples

Demonstrates Jws.GetUnprotectedH, which copies the optional unprotected header of a signature into a JsonObject.

Background. The unprotected header is present only in JSON serialization forms that carry one. It is not covered by the signature.

Chilkat Chilkat2-Python Downloads

Chilkat2-Python
import sys
import chilkat2

success = False

jws = chilkat2.Jws()

# Load the JWS compact serialization.
jwsCompact = "eyJhbGciOiJIUzI1NiJ9.VGhpcyBpcyB0aGUgY29udGVudCB0byBzaWduLg.<signature>"
success = jws.LoadJws(jwsCompact)
if (success == False):
    print(jws.LastErrorText)
    sys.exit()

# Copy the optional unprotected header of signature 0 into a JsonObject.  This applies to JWS in a
# JSON serialization form that carries an unprotected header.
json = chilkat2.JsonObject()
success = jws.GetUnprotectedH(0,json)
if (success == False):
    print(jws.LastErrorText)
    sys.exit()

json.EmitCompact = False
print(json.Emit())