(contentVal)
| 1626 | nextPayload = commonPayloads.readline().rstrip() |
| 1627 | |
| 1628 | def injectEachHeader(contentVal): |
| 1629 | for headerClaim in headDict: |
| 1630 | origVal = headDict[headerClaim] |
| 1631 | headDict[headerClaim] = contentVal |
| 1632 | newContents = genContents(headDict, paylDict) |
| 1633 | jwtOut(newContents+"."+sig, "Injected "+str(contentVal)+" into Header Claim: "+str(headerClaim)) |
| 1634 | headDict[headerClaim] = origVal |
| 1635 | |
| 1636 | def injectEachPayload(contentVal): |
| 1637 | for payloadClaim in paylDict: |
no test coverage detected