PHP Classes

File: src/Contract/KeyProviderInterface.php

Recommend this page to a friend!
  Classes of Scott Arciszewski   Cipher Sweet   src/Contract/KeyProviderInterface.php   Download  
File: src/Contract/KeyProviderInterface.php
Role: Class source
Content type: text/plain
Description: Class source
Class: Cipher Sweet
Encrypt data in away that can be searched
Author: By
Last change:
Date: 5 years ago
Size: 388 bytes
 

Contents

Class file image Download
<?php
namespace ParagonIE\CipherSweet\Contract;

use
ParagonIE\CipherSweet\Backend\Key\SymmetricKey;

/**
 * Interface KeyProviderInterface
 * @package ParagonIE\CipherSweet\Contract
 */
interface KeyProviderInterface
{
   
/**
     * @return BackendInterface
     */
   
public function getBackend();

   
/**
     * @return SymmetricKey
     */
   
public function getSymmetricKey();
}