Last active
October 16, 2021 13:20
-
-
Save dajiaji/6ec440429f2f7166d493610ae63fcf94 to your computer and use it in GitHub Desktop.
A simple example of EUDCC verification with Python CWT.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import cwt | |
from cwt import Claims, load_pem_hcert_dsc | |
# A DSC(Document Signing Certificate) issued by a CSCA (Certificate Signing Certificate Authority) | |
# quoted from: https://github.com/eu-digital-green-certificates/dgc-testdata/blob/main/AT/2DCode/raw/1.json | |
dsc = "-----BEGIN CERTIFICATE-----\nMIIBvTCCAWOgAwIBAgIKAXk8i88OleLsuTAKBggqhkjOPQQDAjA2MRYwFAYDVQQDDA1BVCBER0MgQ1NDQSAxMQswCQYDVQQGEwJBVDEPMA0GA1UECgwGQk1TR1BLMB4XDTIxMDUwNTEyNDEwNloXDTIzMDUwNTEyNDEwNlowPTERMA8GA1UEAwwIQVQgRFNDIDExCzAJBgNVBAYTAkFUMQ8wDQYDVQQKDAZCTVNHUEsxCjAIBgNVBAUTATEwWTATBgcqhkjOPQIBBggqhkjOPQMBBwNCAASt1Vz1rRuW1HqObUE9MDe7RzIk1gq4XW5GTyHuHTj5cFEn2Rge37+hINfCZZcozpwQKdyaporPUP1TE7UWl0F3o1IwUDAOBgNVHQ8BAf8EBAMCB4AwHQYDVR0OBBYEFO49y1ISb6cvXshLcp8UUp9VoGLQMB8GA1UdIwQYMBaAFP7JKEOflGEvef2iMdtopsetwGGeMAoGCCqGSM49BAMCA0gAMEUCIQDG2opotWG8tJXN84ZZqT6wUBz9KF8D+z9NukYvnUEQ3QIgdBLFSTSiDt0UJaDF6St2bkUQuVHW6fQbONd731/M4nc=\n-----END CERTIFICATE-----" | |
# An EUDCC (EU Digital COVID Certificate) | |
# quoted from: https://github.com/eu-digital-green-certificates/dgc-testdata/blob/main/AT/2DCode/raw/1.json | |
eudcc = bytes.fromhex("d2844da20448d919375fc1e7b6b20126a0590133a4041a61817ca0061a60942ea001624154390103a101a4617681aa62646e01626d616d4f52472d3130303033303231356276706a313131393334393030376264746a323032312d30322d313862636f624154626369783155524e3a555643493a30313a41543a31303830373834334639344145453045453530393346424332353442443831332342626d706c45552f312f32302f31353238626973781b4d696e6973747279206f66204865616c74682c20417573747269616273640262746769383430353339303036636e616da463666e74754d5553544552465241553c474f455353494e47455262666e754d7573746572667261752d47c3b6c39f696e67657263676e74684741425249454c4562676e684761627269656c656376657265312e302e3063646f626a313939382d30322d323658405812fce67cb84c3911d78e3f61f890d0c80eb9675806aebed66aa2d0d0c91d1fc98d7bcb80bf00e181806a9502e11b071325901bd0d2c1b6438747b8cc50f521") | |
# 1. Loads a DSC as a COSEKey for verifying a signature in EUDCC. | |
public_key = load_pem_hcert_dsc(dsc) | |
# 2. Verifies and decodes a target EUDCC. | |
decoded = cwt.decode(eudcc, keys=[public_key]) | |
# 3. Get the payload of the EUCC. It is a JSON-formatted Electronic Health Certificate as follows: | |
claims = Claims.new(decoded) | |
# claims.hcert[1] == decoded[-260][1] == | |
# { | |
# 'v': [ | |
# { | |
# 'dn': 1, | |
# 'ma': 'ORG-100030215', | |
# 'vp': '1119349007', | |
# 'dt': '2021-02-18', | |
# 'co': 'AT', | |
# 'ci': 'URN:UVCI:01:AT:10807843F94AEE0EE5093FBC254BD813#B', | |
# 'mp': 'EU/1/20/1528', | |
# 'is': 'Ministry of Health, Austria', | |
# 'sd': 2, | |
# 'tg': '840539006', | |
# } | |
# ], | |
# 'nam': { | |
# 'fnt': 'MUSTERFRAU<GOESSINGER', | |
# 'fn': 'Musterfrau-Gößinger', | |
# 'gnt': 'GABRIELE', | |
# 'gn': 'Gabriele', | |
# }, | |
# 'ver': '1.0.0', | |
# 'dob': '1998-02-26', | |
# } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment