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 bdd35dc8ac - Show all commits

View file

@ -0,0 +1,25 @@
<?php
namespace Socialbox\Objects\Database;
use Socialbox\Interfaces\SerializableInterface;
class ContactKnownKeyRecord implements SerializableInterface
{
/**
* @inheritDoc
*/
public static function fromArray(array $data): object
{
// TODO: Implement fromArray() method.
}
/**
* @inheritDoc
*/
public function toArray(): array
{
// TODO: Implement toArray() method.
}
}