Subversion Repositories oidplus

Rev

Rev 846 | Go to most recent revision | Show entire file | Regard whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 846 Rev 874
Line 1... Line 1...
1
<?php
1
<?php
2
 
2
 
3
/**
3
/**
4
 * PublicKey interface
4
 * PublicKey interface
5
 *
5
 *
-
 
6
 * @category  Crypt
-
 
7
 * @package   Common
6
 * @author    Jim Wigginton <terrafrost@php.net>
8
 * @author    Jim Wigginton <terrafrost@php.net>
7
 * @copyright 2009 Jim Wigginton
9
 * @copyright 2009 Jim Wigginton
8
 * @license   http://www.opensource.org/licenses/mit-license.html  MIT License
10
 * @license   http://www.opensource.org/licenses/mit-license.html  MIT License
9
 * @link      http://phpseclib.sourceforge.net
11
 * @link      http://phpseclib.sourceforge.net
10
 */
12
 */
Line 12... Line 14...
12
namespace phpseclib3\Crypt\Common;
14
namespace phpseclib3\Crypt\Common;
13
 
15
 
14
/**
16
/**
15
 * PublicKey interface
17
 * PublicKey interface
16
 *
18
 *
-
 
19
 * @package Common
17
 * @author  Jim Wigginton <terrafrost@php.net>
20
 * @author  Jim Wigginton <terrafrost@php.net>
-
 
21
 * @access  public
18
 */
22
 */
19
interface PublicKey
23
interface PublicKey
20
{
24
{
21
    public function verify($message, $signature);
25
    public function verify($message, $signature);
22
    //public function encrypt($plaintext);
26
    //public function encrypt($plaintext);