溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點(diǎn)擊 登錄注冊 即表示同意《億速云用戶服務(wù)條款》

PHP實(shí)現(xiàn)SHA1withRSA簽名、加密、驗(yàn)證的方法

發(fā)布時間:2020-10-16 14:51:01 來源:億速云 閱讀:1012 作者:小新 欄目:編程語言

這篇文章將為大家詳細(xì)講解有關(guān)PHP實(shí)現(xiàn)SHA1withRSA簽名、加密、驗(yàn)證的方法,小編覺得挺實(shí)用的,因此分享給大家做個參考,希望大家閱讀完這篇文章后可以有所收獲。

概念解釋:

SHA1安全哈希算法主要適用于數(shù)字簽名標(biāo)準(zhǔn)里面定義的數(shù)字簽名算法。

RSA是目前最有影響力的公鑰加密算法,它能夠抵抗到目前為止已知的絕大多數(shù)密碼攻擊,已被ISO推薦為公鑰數(shù)據(jù)加密標(biāo)準(zhǔn)。

SHA1WithRSA:用SHA算法進(jìn)行簽名,用RSA算法進(jìn)行加密。

業(yè)務(wù)要求:

每個簽名組裝的內(nèi)容是按字段名的字典順序升序排序連接的

先組裝需要簽名的內(nèi)容:

/**
     * 拼接需要簽名的內(nèi)容
     * Author: Tao.
     *
     * @param array $data 需簽名的字段內(nèi)容
     * 
     * @return string
     */     
    public static function getSign($data)
    {
        foreach ($data as $k => $v) {
            $Parameters[$k] = $v;
        }
        //按字典序排序參數(shù)
        ksort($Parameters);
        $sign = '';
        foreach ($Parameters as $k => $v) {
            $sign .= $k . "=" . $v . "&";
        }
        $sign = '&' . rtrim($sign, '&');
        return $sign;
    }

簽名字符串如下示例:
&amount=amount 值&ccy=ccy 值 &merchantId=merchantId 值&notifyUrl=notifyUrl 值&orderId=orderId 值 &payeeAcctNo=payeeAcctNo 值(明文)。

要注意的是,根據(jù)業(yè)務(wù)需要選擇,是否在簽名內(nèi)容前拼接 &符。

然后生成秘鑰簽名:

/**
     * 秘鑰加密
     * Author: Tao.
     *
     * @param string $data 之前生成好的需加密內(nèi)容
     * @param $key 私鑰證書位置(.pfx文件)
     * @param string $pwd 證書密碼
     *
     * @return string
     */
    public static function SHA1withRSA($data, $key,$pwd)
    {
        openssl_pkcs12_read(file_get_contents($key), $certs, $pwd); 
        if (!$certs) return;
        $signature = '';
        openssl_sign($data, $signature, $certs['pkey']);
        return bin2hex($signature);  
    }

由于第三方公司要求轉(zhuǎn)換使用16進(jìn)制,可根據(jù)需求選擇bin2hex()或base64_encode()。

這里要注意的是,根據(jù)業(yè)務(wù)需要,簽名后的內(nèi)容是否要求大小寫敏感。

簽名后的內(nèi)容應(yīng)該是小寫的,可以使用strtoupper()轉(zhuǎn)換成大寫。

以上就是給大家整理好的私鑰加密方法。

但此業(yè)務(wù)中另要求將銀行卡號需要進(jìn)行RSA公鑰加密
以下是獲取公鑰的方法:
此處是獲取對方平臺證書的公鑰(.cer文件)

/**
     * 獲取公鑰
     * Author: Tao.
     *
     * @param $path //公鑰證書位置 (.cer文件)
     *
     * @return mixed
     * @throws \Exception
     */
    public static function loadCert($path)
    {
        $file = file_get_contents($path);
        if (!$file) {
            throw new \Exception('loadx509Cert::file_get_contents ERROR');
        }

        $cert = chunk_split(base64_encode($file), 64, "\n");
        $cert = "-----BEGIN CERTIFICATE-----\n" . $cert . "-----END CERTIFICATE-----\n";

        $res = openssl_pkey_get_public($cert);
        $detail = openssl_pkey_get_details($res);
        openssl_free_key($res);

        if (!$detail) {
            throw new \Exception('loadX509Cert::openssl_pkey_get_details ERROR');
        }
        return $detail['key'];
    }

    /**
     * 公鑰加密
     * Author: Tao.
     * 
     * @param $pubPath  //公鑰證書位置 (.cer文件)
     * @param string $bankCode //銀行卡號
     * 
     * @return string
     */
    public static function rsa_encode($bankCode,$pubPath)
    {
        $pubkey = self::loadCert($pubPath);
        $encrypt_data = '';
        openssl_public_encrypt($bankCode, $encrypt_data, $pubkey);
        $encrypt_data = base64_encode($encrypt_data);
        return $encrypt_data;
    }

你要問我為什么私鑰是bin2hex(),公鑰換了base64_encode()。我也不知道為什么,問過說是16位,但是請求簽名一直失敗,換了64成功了。對方說文檔太老了,忘記了。。根據(jù)需要選擇吧

最后回調(diào)結(jié)果驗(yàn)簽

首先先將回調(diào)數(shù)據(jù)中組裝簽名字段的內(nèi)容取出來,按上面的getSign()方法排序。
然后進(jìn)行驗(yàn)證:

/**
     * 驗(yàn)證返回的簽名是否正確
     *
     * @param string $data 要驗(yàn)證的簽名原文
     * @param string $signature 簽名內(nèi)容
      *@param $pubPath  公鑰證書位置 (.cer文件)
     *
     * @return bool
     */
    public static function verifyRespondSign($data, $signature,$pubPath)
    {
        $keys = self::loadCert($pubPath);
        $signature = hex2bin($signature);
        $ok = openssl_verify($data, $signature, $keys);
        if ($ok == 1) {
            return true;
        }
        return false;
    }

關(guān)于PHP實(shí)現(xiàn)SHA1withRSA簽名、加密、驗(yàn)證的方法就分享到這里了,希望以上內(nèi)容可以對大家有一定的幫助,可以學(xué)到更多知識。如果覺得文章不錯,可以把它分享出去讓更多的人看到。

向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報,并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI