(Map<String, Object> claims)
| 170 | /// Builds an unsigned token (header `{"alg":"none"}`). Accepting these on |
| 171 | /// the verify side is dangerous -- see [#verifyAllowNoneAlgorithm]. |
| 172 | public static String signNone(Map<String, Object> claims) { |
| 173 | return signingInput(NONE, claims) + "."; |
| 174 | } |
| 175 | |
| 176 | // ================================================================ |
| 177 | // parsing |