Represent this key as a dict of the JSON Web Key Set.
(self, is_private=False, **params)
| 8 | self.keys = keys |
| 9 | |
| 10 | def as_dict(self, is_private=False, **params): |
| 11 | """Represent this key as a dict of the JSON Web Key Set.""" |
| 12 | return {"keys": [k.as_dict(is_private, **params) for k in self.keys]} |
| 13 | |
| 14 | def as_json(self, is_private=False, **params): |
| 15 | """Represent this key set as a JSON string.""" |
no outgoing calls