/classes/oauth2/signature/md5.php
https://github.com/JanHelleman/OAuth-2.0 · PHP · 27 lines · 10 code · 4 blank · 13 comment · 0 complexity · bea9687f68c757b9e6fab51fd934c027 MD5 · raw file
- <?php defined('SYSPATH') or die('No direct script access.');
- /**
- * Oauth signature for MD5
- *
- * @author sumh <oalite@gmail.com>
- * @package Oauth
- * @copyright (c) 2010 OALite
- * @license ISC License (ISCL)
- * @link http://www.oalite.cn
- * @see Oauth_Signature
- * *
- */
- class Oauth2_Signature_Md5 extends Oauth2_Signature {
- public static $algorithm = 'MD5';
- public function build(Oauth2_Token $token)
- {
- // TODO
- }
- public function check(Oauth2_Token $token, $signature)
- {
- // TODO
- }
-
- } // END Oauth_Signature_Md5