Use newer security context instead of identity for LD sig

This commit is contained in:
Thomas Sileo 2023-01-14 10:54:22 +01:00
parent 3f129855d1
commit ce6f9238f3
1 changed files with 1 additions and 1 deletions

View File

@ -41,7 +41,7 @@ def _options_hash(doc: ap.RawObject) -> str:
for k in ["type", "id", "signatureValue"]:
if k in doc:
del doc[k]
doc["@context"] = "https://w3id.org/identity/v1"
doc["@context"] = "https://w3id.org/security/v1"
normalized = jsonld.normalize(
doc, {"algorithm": "URDNA2015", "format": "application/nquads"}
)