MayMeow/php-encrypt

View on GitHub
src/Loaders/KeyPairLoaderInterface.php

Summary

Maintainability
A
0 mins
Test Coverage
<?php
/**
 * This file is part of MayMeow/encrypt project
 * Copyright (c) 2017 Charlotta Jung
 *
 * Licensed under The MIT License
 * For full copyright and license information, please see the LICENSE.txt
 * Redistributions of files must retain the above copyright notice.
 * @copyright Copyright (c) Charlotta MayMeow Jung
 * @link      http://maymeow.click
 * @license   http://www.opensource.org/licenses/mit-license.php MIT License
 *
 * @project may-encrypt
 * @file KeyPairLoaderInterface.php
 */

namespace MayMeow\Loaders;

interface KeyPairLoaderInterface
{
    /**
     * Returns private key
     */
    public function getPrivateKey();

    /**
     * Returns public key
     */
    public function getPublicKey();
}