SecureBlackbox 2020 C++ Edition

Questions / Feedback?

KeyPassphraseNeeded Event

Requests a key protection password from the application.

Syntax

ANSI (Cross Platform)
virtual int FireKeyPassphraseNeeded(PGPWriterKeyPassphraseNeededEventParams *e);
typedef struct {
const char *KeyID;
const char *UserID;
int MainKey;
char *Passphrase;
int Skip; int reserved; } PGPWriterKeyPassphraseNeededEventParams; Unicode (Windows) virtual INT FireKeyPassphraseNeeded(PGPWriterKeyPassphraseNeededEventParams *e);
typedef struct {
LPCWSTR KeyID;
LPCWSTR UserID;
BOOL MainKey;
LPWSTR Passphrase;
BOOL Skip; INT reserved; } PGPWriterKeyPassphraseNeededEventParams;
- (void)onKeyPassphraseNeeded:(NSString*)keyID :(NSString*)userID :(BOOL)mainKey :(NSString**)passphrase :(int*)skip;
#define EID_PGPWRITER_KEYPASSPHRASENEEDED 3

virtual INT SECUREBLACKBOX_CALL FireKeyPassphraseNeeded(LPSTR &lpszKeyID, LPSTR &lpszUserID, BOOL &bMainKey, LPSTR &lpszPassphrase, BOOL &bSkip);

Remarks

The class fires this event to request a secret key passphrase from the application. Note that this event asks for a key protection passphrase rather than a message protection passphrase. The class fires it when it attempts to use a secret key to sign the data.

This event is fired for every protected secret key residing in SigningKeys. KeyID specifies the key for which the password is requested, and UserID identifies its user. MainKey tells whether the key is a master key or a subkey.

The handler should provide password via the Passphrase parameter, or set Skip to True to skip this key.

For each key KeyPassphraseNeeded is called in a loop until the correct password is provided or the maximum number of password attempts reached.

Copyright (c) 2022 /n software inc. - All rights reserved.
SecureBlackbox 2020 C++ Edition - Version 20.0 [Build 8166]