Subversion Repositories oidplus

Rev

Blame | Last modification | View Log | RSS feed

  1. <?php
  2. /**
  3.  * SBrook\JWS\Symmetric
  4.  */
  5.  
  6. namespace SBrook\JWS;
  7.  
  8. /**
  9.  * Interface Symmetric
  10.  * @package SBrook\JWS
  11.  */
  12. interface Symmetric {
  13.         /**
  14.          * Set secret key.
  15.          * @param $key - Secret key.
  16.          * @param $pass - Secret key password.
  17.          */
  18.         public function setSecretKey($key, $pass);
  19. }
  20.