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
:
PrivateKeySerializerInterface.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\PrivateKeyInterface; use BitWasp\Buffertools\BufferInterface; interface PrivateKeySerializerInterface { /** * @param PrivateKeyInterface $privateKey * @return BufferInterface */ public function serialize(PrivateKeyInterface $privateKey); /** * @param string|BufferInterface $data * @return PrivateKeyInterface */ public function parse($data); }