SecureBlackbox 2020 C++ Edition

Questions / Feedback?

EntryPassword Property

Provides an encryption password for the current entry.

Syntax

ANSI (Cross Platform)
char* GetEntryPassword();
int SetEntryPassword(const char* lpszEntryPassword); Unicode (Windows) LPWSTR GetEntryPassword();
INT SetEntryPassword(LPCWSTR lpszEntryPassword);
@property (nonatomic,readwrite,assign,getter=entryPassword,setter=setEntryPassword:) NSString* entryPassword;
- (NSString*)entryPassword;
- (void)setEntryPassword:(NSString*)newEntryPassword;
#define PID_PASSWORDVAULT_ENTRYPASSWORD 3

SECUREBLACKBOX_EXTERNAL void* SECUREBLACKBOX_CALL SecureBlackbox_PasswordVault_Get(void *lpObj, int propid, int arridx, int *lpcbVal, int64 *lpllVal);
SECUREBLACKBOX_EXTERNAL int SECUREBLACKBOX_CALL SecureBlackbox_PasswordVault_Set(void *lpObj, int propid, int arridx, const void *val, int cbVal);

Default Value

""

Remarks

Use this property to provide the encryption/decryption password for the current entry. This property is typically assigned from the EntryKeyNeeded event handler.

See a comment in the EntryKey topic to find out how the passwords are used when encrypting entries.

Data Type

String

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