Made message signing in Cryptography use SHA512 as the message content for... #1
1 changed files with 25 additions and 0 deletions
25
src/Socialbox/Objects/Database/ContactKnownKeyRecord.php
Normal file
25
src/Socialbox/Objects/Database/ContactKnownKeyRecord.php
Normal 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.
|
||||
}
|
||||
}
|
Loading…
Add table
Reference in a new issue