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
/
mdanter
/
ecc
/
src
/
Serializer
/
PrivateKey
:
PrivateKeySerializerInterface.php
Advanced Search
Upload
New Item
Settings
Back
Back Up
Advanced Editor
Save
<?php namespace Mdanter\Ecc\Serializer\PrivateKey; use Mdanter\Ecc\Crypto\Key\PrivateKeyInterface; interface PrivateKeySerializerInterface { /** * * @param PrivateKeyInterface $key * @return string */ public function serialize(PrivateKeyInterface $key); /** * * @param string $formattedKey * @return PrivateKeyInterface */ public function parse($formattedKey); }