NeoMutt  2024-03-23-23-gec7045
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 76 of file pgp.c.

77{
78 memset(PgpPass, 0, sizeof(PgpPass));
79 PgpExptime = 0;
80}
static char PgpPass[1024]
Cached PGP Passphrase.
Definition: pgp.c:69
static time_t PgpExptime
Unix time when PgpPass expires.
Definition: pgp.c:71
+ 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 155 of file smime.c.

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