You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
:param devicekeyinfo: Union[dict, CoseKey, str]: device key info
86
88
:param cert_path: str: path to the certificate
87
89
:param revocation: dict: revocation status dict it may include status_list and identifier_list keys
90
+
:param status: dict: status dict that includes the status list's uri and the idx following the "https://datatracker.ietf.org/doc/draft-ietf-oauth-status-list" specification
88
91
89
92
:return: dict: signed mdoc
90
93
"""
@@ -188,6 +191,17 @@ def new(
188
191
"status": self.status,
189
192
}
190
193
194
+
ifstatus:
195
+
ifnot"status_list"instatus:
196
+
raiseInvalidStatusDescriptor("status_list is required")
0 commit comments