C/C++ 中,modulus,privateExponent, pulbicExponent 如何轉(zhuǎn)換成 RSA密鑰
p.s: 以下內(nèi)容均以 openssl 實現(xiàn)。?
RSA 密鑰的存儲方式有很多,某些情況下,我們直接保存密鑰的 modulus(n),publicExponent(e),privateExponent(d),使用的時候再將它們轉(zhuǎn)換成 RSA 密鑰。下面來講講在 C/C++ 環(huán)境中,如何把這幾個大整數(shù)轉(zhuǎn)換成 RSA 密鑰來用。
根據(jù) openssl 的文檔(https://www.openssl.org/docs/man1.1.1/man3/RSA_set0_key.html),openssl提供了這樣一個函數(shù)
這個參數(shù)里面的 n , e , q 對應(yīng) RSA 算法里面的參數(shù),實際使用中,它們分別是
n --> modulus
e --> publicExponent
d --> privateExponent
其中,n和e組成了公鑰,n和d組成私鑰(取自 [RSA算法原理](https://www.ruanyifeng.com/blog/2013/07/rsa_algorithm_part_two.html)),那么,我們想用 modulus(n),publicExponent(e),privateExponent(q) 來生成一個RSA密鑰使用的話,可以用下面這樣簡短的方式
其中,"the_modulus_hex_str" ,"the_publicexponent_hex_str","the_privateexponent_hex_str"是指對應(yīng)的巨大整數(shù)的十六進制字符串。例如??(注:下面的數(shù)據(jù)隱去了一部分)
上面對應(yīng)的巨大整數(shù)的十進制數(shù)為 (注:下面的數(shù)據(jù)隱去了一部分)
這樣,我們就得到了一個RSA密鑰。接下來可以使用這個密鑰對一些數(shù)據(jù)加密/解密。
比如,使用 RSA/ECB/PKCS1Padding?填充方式,進行公鑰加密,私鑰解密例子
openssl 里面,公鑰加密,私鑰解密的函數(shù)原型是
同樣的,還有私鑰加密,公鑰解密的函數(shù)原型是
---------------------
參考資料:?
1. [rsa-ecb-pkcs1padding(openssl)](http://www.longshine.wang/%E7%BD%91%E7%BB%9C%E5%AE%89%E5%85%A8/2017/10/24/rsa-ecb-pkcs1padding/)
2. [openssl doc](https://www.openssl.org/docs/)
3. [RSA算法原理](https://www.ruanyifeng.com/blog/2013/07/rsa_algorithm_part_two.html)