Warning: chmod(): Operation not permitted in /var/www/hopeinstoughton_www/wp-content/plugins/simple-universal-google-analytics/main.php on line 8 [0] in function chmod in /var/www/hopeinstoughton_www/wp-content/plugins/simple-universal-google-analytics/main.php on line 8 [1] in function include_once in /var/www/hopeinstoughton_www/wp-settings.php on line 560 [2] in function require_once in /var/www/hopeinstoughton_www/wp-config.php on line 85 [3] in function require_once in /var/www/hopeinstoughton_www/wp-load.php on line 50 [4] in function require_once in /var/www/hopeinstoughton_www/wp-blog-header.php on line 13 [5] in function require in /var/www/hopeinstoughton_www/index.php on line 17
| Server IP : 94.177.8.99 / Your IP : 216.73.217.165 Web Server : Apache/2.4.58 (Ubuntu) System : Linux aries 6.8.0-134-generic #134-Ubuntu SMP PREEMPT_DYNAMIC Fri Jun 26 18:43:11 UTC 2026 x86_64 User : www-data ( 33) PHP Version : 8.1.34 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : OFF Directory : /proc/thread-self/cwd/vendor/microsoft/microsoft-graph/src/Model/ |
Upload File : |
<?php
/**
* Copyright (c) Microsoft Corporation. All Rights Reserved. Licensed under the MIT License. See License in the project root for license information.
*
* FileEncryptionInfo File
* PHP version 7
*
* @category Library
* @package Microsoft.Graph
* @copyright (c) Microsoft Corporation. All rights reserved.
* @license https://opensource.org/licenses/MIT MIT License
* @link https://graph.microsoft.com
*/
namespace Microsoft\Graph\Model;
/**
* FileEncryptionInfo class
*
* @category Model
* @package Microsoft.Graph
* @copyright (c) Microsoft Corporation. All rights reserved.
* @license https://opensource.org/licenses/MIT MIT License
* @link https://graph.microsoft.com
*/
class FileEncryptionInfo extends Entity
{
/**
* Gets the encryptionKey
* The key used to encrypt the file content.
*
* @return \GuzzleHttp\Psr7\Stream|null The encryptionKey
*/
public function getEncryptionKey()
{
if (array_key_exists("encryptionKey", $this->_propDict)) {
if (is_a($this->_propDict["encryptionKey"], "\GuzzleHttp\Psr7\Stream") || is_null($this->_propDict["encryptionKey"])) {
return $this->_propDict["encryptionKey"];
} else {
$this->_propDict["encryptionKey"] = \GuzzleHttp\Psr7\Utils::streamFor($this->_propDict["encryptionKey"]);
return $this->_propDict["encryptionKey"];
}
}
return null;
}
/**
* Sets the encryptionKey
* The key used to encrypt the file content.
*
* @param \GuzzleHttp\Psr7\Stream $val The value to assign to the encryptionKey
*
* @return FileEncryptionInfo The FileEncryptionInfo
*/
public function setEncryptionKey($val)
{
$this->_propDict["encryptionKey"] = $val;
return $this;
}
/**
* Gets the fileDigest
* The file digest prior to encryption. ProfileVersion1 requires a non-null FileDigest.
*
* @return \GuzzleHttp\Psr7\Stream|null The fileDigest
*/
public function getFileDigest()
{
if (array_key_exists("fileDigest", $this->_propDict)) {
if (is_a($this->_propDict["fileDigest"], "\GuzzleHttp\Psr7\Stream") || is_null($this->_propDict["fileDigest"])) {
return $this->_propDict["fileDigest"];
} else {
$this->_propDict["fileDigest"] = \GuzzleHttp\Psr7\Utils::streamFor($this->_propDict["fileDigest"]);
return $this->_propDict["fileDigest"];
}
}
return null;
}
/**
* Sets the fileDigest
* The file digest prior to encryption. ProfileVersion1 requires a non-null FileDigest.
*
* @param \GuzzleHttp\Psr7\Stream $val The value to assign to the fileDigest
*
* @return FileEncryptionInfo The FileEncryptionInfo
*/
public function setFileDigest($val)
{
$this->_propDict["fileDigest"] = $val;
return $this;
}
/**
* Gets the fileDigestAlgorithm
* The file digest algorithm. ProfileVersion1 currently only supports SHA256 for the FileDigestAlgorithm.
*
* @return string|null The fileDigestAlgorithm
*/
public function getFileDigestAlgorithm()
{
if (array_key_exists("fileDigestAlgorithm", $this->_propDict)) {
return $this->_propDict["fileDigestAlgorithm"];
} else {
return null;
}
}
/**
* Sets the fileDigestAlgorithm
* The file digest algorithm. ProfileVersion1 currently only supports SHA256 for the FileDigestAlgorithm.
*
* @param string $val The value of the fileDigestAlgorithm
*
* @return FileEncryptionInfo
*/
public function setFileDigestAlgorithm($val)
{
$this->_propDict["fileDigestAlgorithm"] = $val;
return $this;
}
/**
* Gets the initializationVector
* The initialization vector (IV) used for the encryption algorithm. Must be 16 bytes.
*
* @return \GuzzleHttp\Psr7\Stream|null The initializationVector
*/
public function getInitializationVector()
{
if (array_key_exists("initializationVector", $this->_propDict)) {
if (is_a($this->_propDict["initializationVector"], "\GuzzleHttp\Psr7\Stream") || is_null($this->_propDict["initializationVector"])) {
return $this->_propDict["initializationVector"];
} else {
$this->_propDict["initializationVector"] = \GuzzleHttp\Psr7\Utils::streamFor($this->_propDict["initializationVector"]);
return $this->_propDict["initializationVector"];
}
}
return null;
}
/**
* Sets the initializationVector
* The initialization vector (IV) used for the encryption algorithm. Must be 16 bytes.
*
* @param \GuzzleHttp\Psr7\Stream $val The value to assign to the initializationVector
*
* @return FileEncryptionInfo The FileEncryptionInfo
*/
public function setInitializationVector($val)
{
$this->_propDict["initializationVector"] = $val;
return $this;
}
/**
* Gets the mac
* The hash of the concatenation of the IV and encrypted file content. Must be 32 bytes.
*
* @return \GuzzleHttp\Psr7\Stream|null The mac
*/
public function getMac()
{
if (array_key_exists("mac", $this->_propDict)) {
if (is_a($this->_propDict["mac"], "\GuzzleHttp\Psr7\Stream") || is_null($this->_propDict["mac"])) {
return $this->_propDict["mac"];
} else {
$this->_propDict["mac"] = \GuzzleHttp\Psr7\Utils::streamFor($this->_propDict["mac"]);
return $this->_propDict["mac"];
}
}
return null;
}
/**
* Sets the mac
* The hash of the concatenation of the IV and encrypted file content. Must be 32 bytes.
*
* @param \GuzzleHttp\Psr7\Stream $val The value to assign to the mac
*
* @return FileEncryptionInfo The FileEncryptionInfo
*/
public function setMac($val)
{
$this->_propDict["mac"] = $val;
return $this;
}
/**
* Gets the macKey
* The key used to compute the message authentication code of the concatenation of the IV and encrypted file content. Must be 32 bytes.
*
* @return \GuzzleHttp\Psr7\Stream|null The macKey
*/
public function getMacKey()
{
if (array_key_exists("macKey", $this->_propDict)) {
if (is_a($this->_propDict["macKey"], "\GuzzleHttp\Psr7\Stream") || is_null($this->_propDict["macKey"])) {
return $this->_propDict["macKey"];
} else {
$this->_propDict["macKey"] = \GuzzleHttp\Psr7\Utils::streamFor($this->_propDict["macKey"]);
return $this->_propDict["macKey"];
}
}
return null;
}
/**
* Sets the macKey
* The key used to compute the message authentication code of the concatenation of the IV and encrypted file content. Must be 32 bytes.
*
* @param \GuzzleHttp\Psr7\Stream $val The value to assign to the macKey
*
* @return FileEncryptionInfo The FileEncryptionInfo
*/
public function setMacKey($val)
{
$this->_propDict["macKey"] = $val;
return $this;
}
/**
* Gets the profileIdentifier
* The profile identifier. Maps to the strategy used to encrypt the file. Currently, only ProfileVersion1 is supported.
*
* @return string|null The profileIdentifier
*/
public function getProfileIdentifier()
{
if (array_key_exists("profileIdentifier", $this->_propDict)) {
return $this->_propDict["profileIdentifier"];
} else {
return null;
}
}
/**
* Sets the profileIdentifier
* The profile identifier. Maps to the strategy used to encrypt the file. Currently, only ProfileVersion1 is supported.
*
* @param string $val The value of the profileIdentifier
*
* @return FileEncryptionInfo
*/
public function setProfileIdentifier($val)
{
$this->_propDict["profileIdentifier"] = $val;
return $this;
}
}