Create New Item
Item Type
File
Folder
Item Name
Search file in folder and subfolders...
Are you sure want to rename?
metropolite
/
wp-content
/
plugins
/
mycryptocheckout
/
vendor
/
bitwasp
/
bitcoin
/
src
/
Crypto
/
EcAdapter
/
Serializer
/
Key
:
PublicKeySerializerInterface.php
Advanced Search
Upload
New Item
Settings
Back
Back Up
Advanced Editor
Save
<?php namespace BitWasp\Bitcoin\Crypto\EcAdapter\Serializer\Key; use BitWasp\Bitcoin\Crypto\EcAdapter\Key\PublicKeyInterface; use BitWasp\Buffertools\BufferInterface; interface PublicKeySerializerInterface { /** * @param PublicKeyInterface $publicKey * @return BufferInterface */ public function serialize(PublicKeyInterface $publicKey); /** * @param string|BufferInterface $data * @return PublicKeyInterface */ public function parse($data); }