for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php namespace Comodojo\RpcClient\Traits;
use \Exception;
/**
* @package Comodojo Spare Parts
* @author Marco Giovinazzi <[email protected]>
* @license MIT
*
* LICENSE:
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
* THE SOFTWARE.
*/
trait Encryption {
* Enable comodojo encrypted transport
* @var mixed
private $encryption = false;
* Set encryption key
* This will enable the NOT-STANDARD payload encryption
* @param string $key
* Encryption key
* @return self
* @throws Exception
public function setEncryption($key) {
if ( empty($key) ) throw new Exception("Shared key cannot be empty");
$this->encryption = $key;
return $this;
}
* Get encryption key
* @return string
public function getEncryption() {
return $this->encryption;