Made message signing in Cryptography use SHA512 as the message content for... #1

Closed
netkas wants to merge 421 commits from master into dev
Showing only changes of commit 0b51b47859 - Show all commits

View file

@ -1,23 +1,23 @@
<?php <?php
namespace Socialbox\Classes\StandardMethods; namespace Socialbox\Classes\StandardMethods;
use Socialbox\Abstracts\Method; use Socialbox\Abstracts\Method;
use Socialbox\Enums\Flags\PeerFlags; use Socialbox\Enums\Flags\PeerFlags;
use Socialbox\Enums\Flags\SessionFlags; use Socialbox\Enums\Flags\SessionFlags;
use Socialbox\Enums\StandardError; use Socialbox\Enums\StandardError;
use Socialbox\Exceptions\DatabaseOperationException; use Socialbox\Exceptions\DatabaseOperationException;
use Socialbox\Exceptions\StandardException; use Socialbox\Exceptions\StandardException;
use Socialbox\Interfaces\SerializableInterface; use Socialbox\Interfaces\SerializableInterface;
use Socialbox\Managers\CaptchaManager; use Socialbox\Managers\CaptchaManager;
use Socialbox\Managers\RegisteredPeerManager; use Socialbox\Managers\RegisteredPeerManager;
use Socialbox\Managers\SessionManager; use Socialbox\Managers\SessionManager;
use Socialbox\Objects\ClientRequest; use Socialbox\Objects\ClientRequest;
use Socialbox\Objects\ClientRequestOld; use Socialbox\Objects\ClientRequestOld;
use Socialbox\Objects\RpcRequest; use Socialbox\Objects\RpcRequest;
class VerificationAnswerImageCaptcha extends Method class VerificationAnswerImageCaptcha extends Method
{ {
/** /**
* @inheritDoc * @inheritDoc
@ -74,4 +74,4 @@ class VerificationAnswerImageCaptcha extends Method
return $rpcRequest->produceResponse($result); return $rpcRequest->produceResponse($result);
} }
} }