Mercurial > trustbridge
comparison ui/certificatelist.cpp @ 4:9849250f50f2
Start implementation of certificatelist parser
author | Andre Heinecke <aheinecke@intevation.de> |
---|---|
date | Tue, 11 Feb 2014 16:46:02 +0000 |
parents | |
children | 992c0ec57660 |
comparison
equal
deleted
inserted
replaced
3:b684e25adbbb | 4:9849250f50f2 |
---|---|
1 #include "certificatelist.h" | |
2 | |
3 CertificateList::CertificateList(char *fileName) | |
4 { | |
5 void *data = NULL; | |
6 list_status_t status = Unknown; | |
7 int size = 0; | |
8 | |
9 status = readAndVerifyList(fileName, data, &size); | |
10 | |
11 qDebug() << "Read and verify list finished. Status is: " << status; | |
12 } |