Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

WIP #84

Open
wants to merge 6 commits into
base: master
Choose a base branch
from
Open

WIP #84

Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/run-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
max-parallel: 1
fail-fast: true
matrix:
php: [7.4, 8.0, 8.1, 8.2]
php: [8.0, 8.1, 8.2]
env:
PUBLISH_KEY: ${{ secrets.PUBLISH_KEY }}
SUBSCRIBE_KEY: ${{ secrets.SUBSCRIBE_KEY }}
Expand Down
48 changes: 25 additions & 23 deletions LICENSE
Original file line number Diff line number Diff line change
@@ -1,27 +1,29 @@
PubNub Real-time Cloud-Hosted Push API and Push Notification Client Frameworks
Copyright (c) 2013 PubNub Inc.
http://www.pubnub.com/
http://www.pubnub.com/terms
PubNub Software Development Kit License Agreement
Copyright © 2023 PubNub Inc. All rights reserved.

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
Subject to the terms and conditions of the license, you are hereby granted
a non-exclusive, worldwide, royalty-free license to (a) copy and modify
the software in source code or binary form for use with the software services
and interfaces provided by PubNub, and (b) redistribute unmodified copies
of the software to third parties. The software may not be incorporated in
or used to provide any product or service competitive with the products
and services of PubNub.

The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.
The above copyright notice and this license shall be included
in or with all copies or substantial portions of the software.

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.
This license does not grant you permission to use the trade names, trademarks,
service marks, or product names of PubNub, except as required for reasonable
and customary use in describing the origin of the software and reproducing
the content of this license.

PubNub Real-time Cloud-Hosted Push API and Push Notification Client Frameworks
Copyright (c) 2013 PubNub Inc.
http://www.pubnub.com/
http://www.pubnub.com/terms
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 PUBNUB OR THE AUTHORS OR COPYRIGHT HOLDERS OF THE SOFTWARE 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.

https://www.pubnub.com/
https://www.pubnub.com/terms
2 changes: 2 additions & 0 deletions examples/Time.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,12 @@
require_once __DIR__ . '/../vendor/autoload.php';

use PubNub\Models\Consumer\PNTimeResult;
use PubNub\Crypto\Cryptor;

$pnconfig = \PubNub\PNConfiguration::demoKeys();
$pubnub = new \PubNub\PubNub($pnconfig);

$result = $pubnub->time()->sync();

printf("Server Time is: %s", date("Y-m-d H:i:s", $result->getTimetoken()));

62 changes: 62 additions & 0 deletions src/PubNub/Crypto/AesCbcCryptor.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,62 @@
<?php

namespace PubNub\Crypto;

use PubNub\Crypto\Payload as CryptoPayload;
use PubNub\Crypto\PaddingTrait;

class AesCbcCryptor extends Cryptor
{
use PaddingTrait;

public const CRYPTOR_ID = 'ACRH';
public const IV_LENGTH = 16;
public const BLOCK_SIZE = 16;
public const CIPHER_ALGO = 'aes-256-cbc';

protected string $cipherKey;

public function __construct(string $cipherKey)
{
$this->cipherKey = $cipherKey;
}

public function getIV(): string
{
return random_bytes(self::IV_LENGTH);
}

public function getCipherKey($cipherKey = null): string
{
return $cipherKey ? $cipherKey : $this->cipherKey;
}

protected function getSecret(string $cipherKey): string
{
$key = !is_null($cipherKey) ? $cipherKey : $this->cipherKey;
return hash("sha256", $key, true);
}

public function encrypt(string $text, ?string $cipherKey = null): CryptoPayload
{
$secret = $this->getSecret($this->getCipherKey($cipherKey));
$iv = $this->getIV();
$encrypted = openssl_encrypt($text, self::CIPHER_ALGO, $secret, OPENSSL_RAW_DATA, $iv);
return new CryptoPayload($encrypted, $iv, self::CRYPTOR_ID);
}

public function decrypt(CryptoPayload $payload, ?string $cipherKey = null)
{
$text = $payload->getData();
$secret = $this->getSecret($this->getCipherKey($cipherKey));
$iv = $payload->getCryptorData();
$decrypted = openssl_decrypt($text, self::CIPHER_ALGO, $secret, OPENSSL_RAW_DATA, $iv);
$result = json_decode($decrypted);

if ($result === null) {
return $decrypted;
} else {
return $result;
}
}
}
13 changes: 13 additions & 0 deletions src/PubNub/Crypto/Cryptor.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
<?php

namespace PubNub\Crypto;

use PubNub\Crypto\Payload as CryptoPayload;

abstract class Cryptor
{
public const CRYPTOR_ID = null;

abstract public function encrypt(string $text, ?string $cipherKey = null): CryptoPayload;
abstract public function decrypt(CryptoPayload $payload, ?string $cipherKey = null);
}
44 changes: 44 additions & 0 deletions src/PubNub/Crypto/Header.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,44 @@
<?php

namespace PubNub\Crypto;

class Header
{
public const HEADER_VERSION = 1;
private string $sentinel;
private string $cryptorId;
private string $cryptorData;
private int $length;

public function __construct(
string $sentinel,
string $cryptorId,
string $cryptorData,
int $length
) {
$this->sentinel = $sentinel;
$this->cryptorId = $cryptorId;
$this->cryptorData = $cryptorData;
$this->length = $length;
}

public function getSentinel(): string
{
return $this->sentinel;
}

public function getCryptorId(): string
{
return $this->cryptorId;
}

public function getCryptorData(): string
{
return $this->cryptorData;
}

public function getLength(): int
{
return $this->length;
}
}
101 changes: 101 additions & 0 deletions src/PubNub/Crypto/LegacyCryptor.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,101 @@
<?php

namespace PubNub\Crypto;

use PubNub\Crypto\Cryptor;
use PubNub\Exceptions\PubNubResponseParsingException;
use PubNub\Crypto\PaddingTrait;

class LegacyCryptor extends Cryptor
{
use PaddingTrait;

public const CRYPTOR_ID = '0000';
public const IV_LENGTH = 16;
public const BLOCK_SIZE = 16;
public const CIPHER_ALGO = 'aes-256-cbc';
protected const STATIC_IV = '0123456789012345';

protected string $cipherKey;
protected bool $useRandomIV;

public function __construct(string $key, bool $useRandomIV)
{
$this->cipherKey = $key;
$this->useRandomIV = $useRandomIV;
}

public function getIV(): string
{
if (!$this->useRandomIV) {
return self::STATIC_IV;
}
return random_bytes(static::IV_LENGTH);
}

public function getCipherKey(): string
{
return $this->cipherKey;
}

public function encrypt(string $text, ?string $cipherKey = null): Payload
{
$iv = $this->getIV();
$shaCipherKey = substr(hash("sha256", $this->cipherKey), 0, 32);
$padded = $this->pad($text, self::BLOCK_SIZE);
$encrypted = openssl_encrypt($text, self::CIPHER_ALGO, $shaCipherKey, OPENSSL_RAW_DATA, $iv);
if ($this->useRandomIV) {
$encryptedWithIV = $iv . $encrypted;
} else {
$encryptedWithIV = $encrypted;
}
return new Payload($encryptedWithIV, '', self::CRYPTOR_ID);
}

public function decrypt(Payload $payload, ?string $cipherKey = null)
{
$text = $payload->getData();
if (strlen($text) === 0) {
throw new PubNubResponseParsingException("Decryption error: message is empty");
}

if (is_array($text)) {
if (array_key_exists("pn_other", $text)) {
$text = $text["pn_other"];
} else {
if (is_array($text)) {
throw new PubNubResponseParsingException("Decryption error: message is not a string");
} else {
throw new PubNubResponseParsingException("Decryption error: pn_other object key missing");
}
}
} elseif (!is_string($text)) {
throw new PubNubResponseParsingException("Decryption error: message is not a string or object");
}

$shaCipherKey = substr(hash("sha256", $this->cipherKey), 0, 32);

if ($this->useRandomIV) {
$iv = substr($text, 0, 16);
$data = substr($text, 16);
} else {
$iv = self::STATIC_IV;
$data = $text;
}
$decrypted = openssl_decrypt($data, 'aes-256-cbc', $shaCipherKey, OPENSSL_RAW_DATA, $iv);

if ($decrypted === false) {
throw new PubNubResponseParsingException("Decryption error: " . openssl_error_string());
}

$unPadded = $this->depad($decrypted, self::BLOCK_SIZE);

$result = json_decode($unPadded);

if ($result === null) {
return $unPadded;
} else {
return $result;
}
}
}
46 changes: 46 additions & 0 deletions src/PubNub/Crypto/PaddingTrait.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,46 @@
<?php

namespace PubNub\Crypto;

trait PaddingTrait
{
/**
* Pad $text to multiple of $blockSize lenght using PKCS5Padding schema
*
* @param string $text
* @param int $blockSize
* @return string
*/
public function pad(string $text, int $blockSize)
{
$pad = $blockSize - (strlen($text) % $blockSize);
return $text . str_repeat(chr($pad), $pad);
}

/**
* Remove padding from $text using PKCS5Padding schema
*
* @param string $text
* @param int $blockSize
* @return string
*/
public function depad($data, $blockSize)
{
$length = strlen($data);
if ($length == 0) {
return $data;
}

$padLength = substr($data, -1);

if (ord($padLength) <= $blockSize) {
for ($i = $length - 2; $i > 0; $i--) {
if (ord($data [$i] != $padLength)) {
break;
}
}
return substr($data, 0, $i + 1);
}
return $data;
}
}
32 changes: 32 additions & 0 deletions src/PubNub/Crypto/Payload.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
<?php

namespace PubNub\Crypto;

class Payload
{
private string $data;
private ?string $cryptorData;
private ?string $cryptorId;

public function __construct(string $data, ?string $cryptorData = null, ?string $cryptorId = null)
{
$this->data = $data;
$this->cryptorData = $cryptorData;
$this->cryptorId = $cryptorId;
}

public function getData(): string
{
return $this->data;
}

public function getCryptorData(): ?string
{
return $this->cryptorData;
}

public function getCryptorId(): ?string
{
return $this->cryptorId;
}
}
Loading