Represent this key as a JSON string.
(self, is_private=False, **params)
| 91 | raise NotImplementedError() |
| 92 | |
| 93 | def as_json(self, is_private=False, **params): |
| 94 | """Represent this key as a JSON string.""" |
| 95 | obj = self.as_dict(is_private, **params) |
| 96 | return json_dumps(obj) |
| 97 | |
| 98 | def thumbprint(self): |
| 99 | """Implementation of RFC7638 JSON Web Key (JWK) Thumbprint.""" |