SecureBlackbox 2020 iOS Edition

Questions / Feedback?

encryptionType (property)

The encryption type used to encrypt the document.

Syntax

@property (nonatomic,readonly,assign,getter=encryptionType) int encryptionType;
- (int)encryptionType;

/* Possible Values */
OET_DEFAULT(0),
OET_BINARY_RC4(1),
OET_BINARY_RC4CRYPTO_API(2),
OET_OPEN_XMLSTANDARD(3),
OET_OPEN_XMLAGILE(4),
OET_OPEN_DOCUMENT(5)
public var encryptionType: OfficedecryptorEncryptionTypes {
  get {...}
}
public enum OfficedecryptorEncryptionTypes : Int32 { case oetDefault = 0 case oetBinaryRC4 = 1 case oetBinaryRC4CryptoAPI = 2 case oetOpenXMLStandard = 3 case oetOpenXMLAgile = 4 case oetOpenDocument = 5 }

Default Value

0

Remarks

This property contains the encryption type used to encrypt the Office document.

Supported values:

oetDefault0Uses default encryption depending on Office document format
oetBinaryRC41Uses RC4 encryption for Binary Office documents
oetBinaryRC4CryptoAPI2Uses RC4 Crypto API encryption for Binary Office documents
oetOpenXMLStandard3Uses standard encryption for OpenXML Office documents
oetOpenXMLAgile4Uses agile encryption for OpenXML Office documents
oetOpenDocument5Uses standard encryption for OpenOffice documents

This property is read-only.

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