DPP/DLT functionality #36

Merged
pedro merged 68 commits from dpp into main 2024-12-11 15:15:14 +00:00
Showing only changes of commit 9b7bbd6bcf - Show all commits

View file

@ -95,7 +95,6 @@ class PublicDeviceWebView(TemplateView):
'components': components,
'manufacturer DPP': '',
'device': {},
'components': [],
}
result = {
'@context': ['https://ereuse.org/dpp0.json'],
@ -132,8 +131,10 @@ class PublicDeviceWebView(TemplateView):
dev = Build(d.doc, None, check=True)
doc = dev.get_phid()
ev = json.dumps(doc)
phid = dev.get_signature(ev)
dpp = "{}:{}".format(self.pk, phid)
rr = {
'dpp': d.key,
'dpp': dpp,
'document': ev,
'algorithm': ALGORITHM,
'manufacturer DPP': '',