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
Salve,
Cosa viene verificato qui (vedere codice sotto) con "verifyChild0" e "verifyChild1" ?
CIEinterface.py :
def extractData(self):
"""
Extracts the personal data from a CIE after the EAC authentication
:return: The parsed data
"""
mainDGData = self.readDg(30)
mainDG = ASN1(mainDGData)
verifyChild0 = mainDG.root['children'][0]['verify']([0x30, 0x31, 0x30, 0x37])
verifyChild1 = mainDG.root['children'][1]['verify']([0x30, 0x34, 0x30, 0x30, 0x30, 0x30])
if not verifyChild0 or not verifyChild1:
raise Exception('extractData: Invalid DG 30')
...
The text was updated successfully, but these errors were encountered:
Salve,
Cosa viene verificato qui (vedere codice sotto) con "verifyChild0" e "verifyChild1" ?
CIEinterface.py :
The text was updated successfully, but these errors were encountered: