# # # patch "src/vocab.h" # from [280f331f891dd8fc88d4e77fb9ffcee067e3df68] # to [f36bfd022e6881d00b22aba10678ce6b08300c14] # ============================================================ --- src/vocab.h 280f331f891dd8fc88d4e77fb9ffcee067e3df68 +++ src/vocab.h f36bfd022e6881d00b22aba10678ce6b08300c14 @@ -65,6 +65,16 @@ typedef QList RevisionCert typedef QPair RevisionCert; typedef QList RevisionCerts; +// used to store the output of automate certs +typedef struct { + enum Trust { Trusted, Untrusted } trust; + enum Signature { Ok, Bad, Unknown } signature; + QString key; + QString name; + QString value; +} Cert; +typedef QList CertList; + typedef QList ByteArrayList; // used for BasicIOParser and BasicIOWriter