SecureBlackbox 2020 iOS Edition

Questions / Feedback?

encryptedDataType (property)

Defines the type of data being encrypted.

Syntax

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

/* Possible Values */
CXEDT_ELEMENT(0),
CXEDT_CONTENT(1),
CXEDT_EXTERNAL(2)
public var encryptedDataType: XmldecryptorEncryptedDataTypes {
  get {...}
}
public enum XmldecryptorEncryptedDataTypes : Int32 { case cxedtElement = 0 case cxedtContent = 1 case cxedtExternal = 2 }

Default Value

0

Remarks

This property defines what data type is about to be encrypted.

Supported values:

cxedtElement0The XML element is encrypted.
XMLNode property specifies the XML element that should be encrypted.
cxedtContent1Element content is encrypted.
XMLNode property specifies the XML element which content should be encrypted.
cxedtExternal2External data is encrypted. Use ExternalData property to set the data that should be encrypted.
XMLNode property specifies the location where xenc:EncryptedData element should be placed.

If the XMLNode property is set to the empty string, and the InputStream and InputFile properties are not provided, then a new XML document will be created with the xenc:EncryptedData element as a document element.

This property is read-only.

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