From a51925dff1a69a1108c694cf93462eafb019b601 Mon Sep 17 00:00:00 2001 From: Aaron Seigo Date: Thu, 26 May 2011 17:22:43 +0200 Subject: [PATCH] better docs --- plasma.h | 16 +++++++++------- 1 file changed, 9 insertions(+), 7 deletions(-) diff --git a/plasma.h b/plasma.h index b629f0687..e838a65db 100644 --- a/plasma.h +++ b/plasma.h @@ -274,13 +274,15 @@ enum AnnouncementMethod { Q_DECLARE_FLAGS(AnnouncementMethods, AnnouncementMethod) enum TrustLevel { - UnverifiableTrust = 0, /**< The plasmoid is shipped without any signature file*/ - CompletelyUntrusted, /**< The plasmoid has been signed with a broken/expired/false signature*/ - UnknownTrusted, /**< The plasmoid has been signed with an unknown key*/ - UserTrusted, /**< The plasmoid has been signed with a key signed by the user himself*/ - SelfTrusted, /**< The plasmoid has been signed with a user key*/ - FullyTrusted, /**< The plasmoid has been signed with a key signed by a KDE key*/ - UltimatelyTrusted /**< The plasmoid has been signed with a KDE key*/ + UnverifiableTrust = 0, /**< The trust of the object can not be verified, usually because no + trust information (e.g. a cryptographic signature) was provided */ + CompletelyUntrusted, /**< The signature is broken/expired/false */ + UnknownTrusted, /**< The signature is valid, but the key is unknown */ + UserTrusted, /**< The signature is valid and made with a key signed by one of the + user's own keys*/ + SelfTrusted, /**< The signature is valid and made with one of the user's own keys*/ + FullyTrusted, /**< The signature is valid and made with a key signed by the vendor's key*/ + UltimatelyTrusted /**< The signature is valid and made with the vendor's key*/ }; Q_ENUMS(TrustLevel)