SecureBlackbox 2020 iOS Edition

Questions / Feedback?

extractionMode (property)

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

Syntax

@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)
public var extractionMode: AsicverifierExtractionModes {
  get {...}
set {...} }
public enum AsicverifierExtractionModes : Int32 { case aemNone = 0 case aemAll = 1 case aemSigned = 2 case aemSignedAndValid = 3 }

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

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