SecureBlackbox 2020 C++ Edition

Questions / Feedback?

ExtractionMode Property

Specifies which entries should be extracted from the container upon verification.

Syntax

ANSI (Cross Platform)
int GetExtractionMode();
int SetExtractionMode(int iExtractionMode); Unicode (Windows) INT GetExtractionMode();
INT SetExtractionMode(INT iExtractionMode);

Possible Values

AEM_NONE(0), 
AEM_ALL(1),
AEM_SIGNED(2),
AEM_SIGNED_AND_VALID(3)
@property (nonatomic,readwrite,assign,getter=extractionMode,setter=setExtractionMode:) int extractionMode;
- (int)extractionMode;
- (void)setExtractionMode:(int)newExtractionMode;

Possible Values

AEM_NONE(0), 
AEM_ALL(1),
AEM_SIGNED(2),
AEM_SIGNED_AND_VALID(3)
#define PID_ASICVERIFIER_EXTRACTIONMODE 45

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

Default Value

0

Remarks

Use this property to choose entries that should be extracted in the Verify method. Choose between extracting all files, signed-only, signed and with verified signature, and none at all (verify-only mode).

aemNone0
aemAll1
aemSigned2
aemSignedAndValid3

Data Type

Integer

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