Package com.microsoft.graph.models
Class FileEncryptionInfo
java.lang.Object
com.microsoft.graph.models.FileEncryptionInfo
- All Implemented Interfaces:
com.microsoft.graph.serializer.IJsonBackedObject
public class FileEncryptionInfo
extends Object
implements com.microsoft.graph.serializer.IJsonBackedObject
The class for the File Encryption Info.
-
Field Summary
FieldsModifier and TypeFieldDescriptionbyte[]
The Encryption Key.byte[]
The File Digest.The File Digest Algorithm.byte[]
The Initialization Vector.byte[]
The Mac.byte[]
The Mac Key.the OData type of the object as returned by the serviceThe Profile Identifier. -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionfinal com.microsoft.graph.serializer.AdditionalDataManager
void
setRawObject
(com.microsoft.graph.serializer.ISerializer serializer, com.google.gson.JsonObject json) Sets the raw JSON object
-
Field Details
-
oDataType
the OData type of the object as returned by the service -
encryptionKey
@SerializedName(value="encryptionKey", alternate="EncryptionKey") @Expose @Nullable public byte[] encryptionKeyThe Encryption Key. The key used to encrypt the file content. -
fileDigest
@SerializedName(value="fileDigest", alternate="FileDigest") @Expose @Nullable public byte[] fileDigestThe File Digest. The file digest prior to encryption. -
fileDigestAlgorithm
@SerializedName(value="fileDigestAlgorithm", alternate="FileDigestAlgorithm") @Expose @Nullable public String fileDigestAlgorithmThe File Digest Algorithm. The file digest algorithm. -
initializationVector
@SerializedName(value="initializationVector", alternate="InitializationVector") @Expose @Nullable public byte[] initializationVectorThe Initialization Vector. The initialization vector used for the encryption algorithm. -
mac
@SerializedName(value="mac", alternate="Mac") @Expose @Nullable public byte[] macThe Mac. The hash of the encrypted file content + IV (content hash). -
macKey
@SerializedName(value="macKey", alternate="MacKey") @Expose @Nullable public byte[] macKeyThe Mac Key. The key used to get mac. -
profileIdentifier
@SerializedName(value="profileIdentifier", alternate="ProfileIdentifier") @Expose @Nullable public String profileIdentifierThe Profile Identifier. The the profile identifier.
-
-
Constructor Details
-
FileEncryptionInfo
public FileEncryptionInfo()
-
-
Method Details
-
additionalDataManager
@Nonnull public final com.microsoft.graph.serializer.AdditionalDataManager additionalDataManager()- Specified by:
additionalDataManager
in interfacecom.microsoft.graph.serializer.IJsonBackedObject
-
setRawObject
public void setRawObject(@Nonnull com.microsoft.graph.serializer.ISerializer serializer, @Nonnull com.google.gson.JsonObject json) Sets the raw JSON object- Specified by:
setRawObject
in interfacecom.microsoft.graph.serializer.IJsonBackedObject
- Parameters:
serializer
- the serializerjson
- the JSON object to set this object to
-