NeoMutt  2023-11-03-85-g512e01
Teaching an old dog new tricks
DOXYGEN
Loading...
Searching...
No Matches
void_passphrase()

Forget the cached passphrase. More...

+ Collaboration diagram for void_passphrase():

Functions

static void pgp_gpgme_void_passphrase (void)
 Forget the cached passphrase - Implements CryptModuleSpecs::void_passphrase() -.
 
static void smime_gpgme_void_passphrase (void)
 Forget the cached passphrase - Implements CryptModuleSpecs::void_passphrase() -.
 
void pgp_class_void_passphrase (void)
 Forget the cached passphrase - Implements CryptModuleSpecs::void_passphrase() -.
 
void smime_class_void_passphrase (void)
 Forget the cached passphrase - Implements CryptModuleSpecs::void_passphrase() -.
 

Detailed Description

Forget the cached passphrase.

Function Documentation

◆ pgp_gpgme_void_passphrase()

static void pgp_gpgme_void_passphrase ( void  )
static

Forget the cached passphrase - Implements CryptModuleSpecs::void_passphrase() -.

This is handled by gpg-agent.

Definition at line 41 of file crypt_mod_pgp_gpgme.c.

42{
43}

◆ smime_gpgme_void_passphrase()

static void smime_gpgme_void_passphrase ( void  )
static

Forget the cached passphrase - Implements CryptModuleSpecs::void_passphrase() -.

This is handled by gpg-agent.

Definition at line 41 of file crypt_mod_smime_gpgme.c.

42{
43}

◆ pgp_class_void_passphrase()

void pgp_class_void_passphrase ( void  )

Forget the cached passphrase - Implements CryptModuleSpecs::void_passphrase() -.

Definition at line 77 of file pgp.c.

78{
79 memset(PgpPass, 0, sizeof(PgpPass));
80 PgpExptime = 0;
81}
static char PgpPass[1024]
Cached PGP Passphrase.
Definition: pgp.c:70
static time_t PgpExptime
Unix time when PgpPass expires.
Definition: pgp.c:72
+ Here is the caller graph for this function:

◆ smime_class_void_passphrase()

void smime_class_void_passphrase ( void  )

Forget the cached passphrase - Implements CryptModuleSpecs::void_passphrase() -.

Definition at line 152 of file smime.c.

153{
154 memset(SmimePass, 0, sizeof(SmimePass));
155 SmimeExpTime = 0;
156}
static char SmimePass[256]
Cached Smime Passphrase.
Definition: smime.c:67
static time_t SmimeExpTime
Unix time when SmimePass expires.
Definition: smime.c:69
+ Here is the caller graph for this function: