php實現MD5withRSA簽名演算法

來源:互聯網
上載者:User

標籤:style   c   class   blog   code   java   

不知道怎麼獲得RSA公開金鑰和私密金鑰的先看我之前這篇 http://www.cnblogs.com/kennyhr/p/3746048.html

不清楚RSA演算法的推薦看阮老師的http://www.ruanyifeng.com/blog/2013/06/rsa_algorithm_part_one.html

<?phpclass Md5RSA{    /**     * 利用約定資料和私密金鑰產生數位簽章     * @param $data 待簽資料     * @return String 返回簽名     */    public function sign($data=‘‘)    {        if (empty($data))        {            return False;        }        $private_key = file_get_contents(dirname(__FILE__).‘/rsa_private_key.pem‘);        if (empty($private_key))        {            echo "Private Key error!";            return False;        }        $pkeyid = openssl_get_privatekey($private_key);        if (empty($pkeyid))        {            echo "private key resource identifier False!";            return False;        }        $verify = openssl_sign($data, $signature, $pkeyid, OPENSSL_ALGO_MD5);        openssl_free_key($pkeyid);        return $signature;    }    /**     * 利用公開金鑰和數位簽章以及約定資料驗證合法性     * @param $data 待驗證資料     * @param $signature 數位簽章     * @return -1:error驗證錯誤 1:correct驗證成功 0:incorrect驗證失敗     */    public function isValid($data=‘‘, $signature=‘‘)    {        if (empty($data) || empty($signature))        {            return False;        }        $public_key = file_get_contents(dirname(__FILE__).‘/rsa_public_key.pem‘);        if (empty($public_key))        {            echo "Public Key error!";            return False;        }        $pkeyid = openssl_get_publickey($public_key);        if (empty($pkeyid))        {            echo "public key resource identifier False!";            return False;        }        $ret = openssl_verify($data, $signature, $pkeyid, OPENSSL_ALGO_MD5);        switch ($ret)        {            case -1:                echo "error";                break;            default:                echo $ret==1 ? "correct" : "incorrect";//0:incorrect                break;        }        return $ret;    }}

 

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.