Ncrypt Expando definitions. More...
#include <gpgme.h>
#include <stdbool.h>
#include <stdio.h>
#include <time.h>
#include "private.h"
#include "mutt/lib.h"
#include "core/lib.h"
#include "expando_gpgme.h"
#include "lib.h"
#include "expando/lib.h"
#include "crypt_gpgme.h"
#include "pgplib.h"
Go to the source code of this file.
Functions | |
static char * | crypt_key_abilities (KeyFlags flags) |
Parse key flags into a string. | |
static char * | crypt_flags (KeyFlags flags) |
Parse the key flags into a single character. | |
static long | gpgme_entry_number_num (const struct ExpandoNode *node, void *data, MuttFormatFlags flags) |
GPGME: Index number - Implements get_number_t -. | |
static void | gpgme_entry_trust (const struct ExpandoNode *node, void *data, MuttFormatFlags flags, struct Buffer *buf) |
GPGME: Trust/validity - Implements get_string_t -. | |
static void | gpgme_entry_user_id (const struct ExpandoNode *node, void *data, MuttFormatFlags flags, struct Buffer *buf) |
GPGME: User id - Implements get_string_t -. | |
static void | gpgme_key_algorithm (const struct ExpandoNode *node, void *data, MuttFormatFlags flags, struct Buffer *buf) |
GPGME: Key Algorithm - Implements get_string_t -. | |
static void | gpgme_key_capabilities (const struct ExpandoNode *node, void *data, MuttFormatFlags flags, struct Buffer *buf) |
GPGME: Key Capabilities - Implements get_string_t -. | |
static void | gpgme_key_date (const struct ExpandoNode *node, void *data, MuttFormatFlags flags, struct Buffer *buf) |
GPGME: Date of the key - Implements get_string_t -. | |
static long | gpgme_key_date_num (const struct ExpandoNode *node, void *data, MuttFormatFlags flags) |
GPGME: Date of the key - Implements get_number_t -. | |
static void | gpgme_key_fingerprint (const struct ExpandoNode *node, void *data, MuttFormatFlags flags, struct Buffer *buf) |
GPGME: Key fingerprint - Implements get_string_t -. | |
static void | gpgme_key_flags (const struct ExpandoNode *node, void *data, MuttFormatFlags flags, struct Buffer *buf) |
GPGME: Key Flags - Implements get_string_t -. | |
static void | gpgme_key_id (const struct ExpandoNode *node, void *data, MuttFormatFlags flags, struct Buffer *buf) |
GPGME: Key id - Implements get_string_t -. | |
static long | gpgme_key_length_num (const struct ExpandoNode *node, void *data, MuttFormatFlags flags) |
GPGME: Key length - Implements get_number_t -. | |
static void | gpgme_key_protocol (const struct ExpandoNode *node, void *data, MuttFormatFlags flags, struct Buffer *buf) |
GPGME: Protocol - Implements get_string_t -. | |
Variables | |
const struct ExpandoRenderCallback | PgpEntryGpgmeRenderCallbacks [] |
Callbacks for GPGME Key Expandos. | |
Ncrypt Expando definitions.
This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
You should have received a copy of the GNU General Public License along with this program. If not, see http://www.gnu.org/licenses/.
Definition in file expando_gpgme.c.
|
static |
Parse key flags into a string.
flags | Flags, see KeyFlags |
ptr | Flag string |
Definition at line 49 of file expando_gpgme.c.
|
static |
Parse the key flags into a single character.
flags | Flags, see KeyFlags |
char | Flag character |
The returned character describes the most important flag.
Definition at line 79 of file expando_gpgme.c.
const struct ExpandoRenderCallback PgpEntryGpgmeRenderCallbacks[] |
Callbacks for GPGME Key Expandos.
Definition at line 311 of file expando_gpgme.c.