Mercurial > trustbridge
diff 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 |
line wrap: on
line diff
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/ui/certificatelist.cpp Tue Feb 11 16:46:02 2014 +0000 @@ -0,0 +1,12 @@ +#include "certificatelist.h" + +CertificateList::CertificateList(char *fileName) +{ + void *data = NULL; + list_status_t status = Unknown; + int size = 0; + + status = readAndVerifyList(fileName, data, &size); + + qDebug() << "Read and verify list finished. Status is: " << status; +}