久久国产成人av_抖音国产毛片_a片网站免费观看_A片无码播放手机在线观看,色五月在线观看,亚洲精品m在线观看,女人自慰的免费网址,悠悠在线观看精品视频,一级日本片免费的,亚洲精品久,国产精品成人久久久久久久

分享

征服*.PFX(*.p12)——個人信息交換文件

 dzhpingbo 2010-12-21
與計費系統(tǒng)打交道,,少不了用到加密/解密實現(xiàn)。為了安全起見,,通過非對稱加密交換對稱加密密鑰更是不可或缺,。那么需要通過什么載體傳遞非對稱算法公鑰/私鑰信息?數(shù)字證書是公鑰的載體,,而密鑰庫可以包含公鑰,、私鑰信息。
JKSPKCS#12都是比較常用的兩種密鑰庫格式/標準,。對于前者,,搞Java開發(fā),尤其是接觸過HTTPS平臺的朋友,并不陌生,。JKS文件(通常為*.jks或*.keystore,,擴展名無關(guān))可以通過Java原生工具——KeyTool生成;而后者PKCS#12文件(通常為*.p12或*.pfx,,意味個人信息交換文件),,則是通過更為常用的OpenSSL工具產(chǎn)生。
當然,,這兩者之間是可以通過導入/導出的方式進行轉(zhuǎn)換的,!當然,這種轉(zhuǎn)換需要通過KeyTool工具進行,!

回歸正題,,計費同事遇到一個難題:合作方交給他們一個*.pfx文件,需要他們從中提取密鑰,,然后進行加密交互,。其實,通過Java直接操作密鑰庫文件(或個人信息交換文件)對于一般Java開發(fā)人員來說,,這都是個冷門,。不接觸數(shù)字安全,根本不知所云,。況且,,Java原生的密鑰庫文件格式為JKS,如何操作*.pfx文件,?密鑰庫操作需要獲知密鑰庫別名,,*.pfx別名是什么?,!這些難題都留給了我,,當然,我欣然接受并回報碩果,!

方案:
  1. 通過keytool密鑰庫導入命令importkeystore,,將密鑰庫格式由PKCS#12轉(zhuǎn)換為JKS,。
  2. 檢索新生成的密鑰庫文件,,提取別名信息。
  3. 由密鑰庫文件導出數(shù)字證書(這里將用到別名),。
  4. 通過代碼提取公鑰/私鑰、簽名算法等

先看可是轉(zhuǎn)換:
Cmd代碼 復制代碼
  1. echo 格式轉(zhuǎn)換   
  2. keytool -importkeystore -v  -srckeystore zlex.pfx -srcstoretype pkcs12 -srcstorepass 123456 -destkeystore zlex.keystore -deststoretype jks -deststorepass 123456  

-importkeystore導入密鑰庫,,通過格式設定,,我們可以將PKCS#12文件轉(zhuǎn)換為JKS格式。
-v顯示詳情
-srckeystore源密鑰庫,這里是zlex.pfx
-srcstoretype源密鑰庫格式,,這里為pkcs12
-srcstorepass源密鑰庫密碼,,這里為123456
-destkeystore目標密鑰庫,這里為zlex.keystore
-deststoretype目標密鑰庫格式,,這里為jks,,默認值也如此
-deststorepass目標密鑰庫密碼,這里為123456
通過這個操作,,我們能夠獲得所需的密鑰庫文件zlex.keystore,。

這時,我們已經(jīng)獲得了密鑰庫文件,,只要確定對應的別名信息,,就可以提取公鑰/私鑰,以及數(shù)字證書,,進行加密交互了,!
Cmd代碼 復制代碼
  1. echo 查看證書   
  2. keytool -list -keystore zlex.keystore -storepass 123456 -v  

-list列舉密鑰庫
-keystore密鑰庫,這里是zlex.keystore
-storepass密鑰庫密碼,,這里是123456
-v顯示詳情

這里需要細致觀察一下別名信息?。?!就是紅框中的數(shù)字1?。?!
經(jīng)過我多次嘗試,,將PKCS#12格式的密鑰庫轉(zhuǎn)化為JKS格式時,其別名一律為“1”!也就是說,,我們完全可以不進行密鑰庫轉(zhuǎn)換,,也能獲得公鑰/私鑰。
現(xiàn)在,,我們把證書導出,!
Cmd代碼 復制代碼
  1. echo 導出證書   
  2. keytool -exportcert -alias 1 -keystore zlex.keystore -file zlex.crt -storepass 123456  

-exportcert導出證書
-alias別名,這里是1
-keystore密鑰庫,,這里是zlex.keystore
-file證書文件,,這里是zlex.crt
-storepass密鑰庫密碼,這里是123456

現(xiàn)在證書也導出了,,我們可以提取公鑰/私鑰,,進行加密/解密,簽名/驗證操作了,!當然,,即便沒有證書,,我們也能夠通過密鑰庫(JKS格式)文件獲得證書,以及公鑰/私鑰,、簽名算法等,。
補充代碼, 其實就是對Java加密技術(shù)(八)的修改,!
Java代碼 復制代碼
  1. /**  
  2.  * 2010-8-11  
  3.  */  
  4. package org.zlex.pfx;   
  5.   
  6. import java.io.FileInputStream;   
  7. import java.security.KeyStore;   
  8. import java.security.PrivateKey;   
  9. import java.security.PublicKey;   
  10. import java.security.Signature;   
  11. import java.security.cert.Certificate;   
  12. import java.security.cert.CertificateFactory;   
  13. import java.security.cert.X509Certificate;   
  14. import java.util.Date;   
  15.   
  16. import javax.crypto.Cipher;   
  17.   
  18. /**  
  19.  * 證書操作類  
  20.  *   
  21.  * @author <a href="mailto:[email protected]">梁棟</a>  
  22.  * @since 1.0  
  23.  */  
  24. public class CertificateCoder {   
  25.     /**  
  26.      * Java密鑰庫(Java Key Store,,JKS)KEY_STORE  
  27.      */  
  28.     public static final String KEY_STORE = "JKS";   
  29.   
  30.     public static final String X509 = "X.509";   
  31.   
  32.     /**  
  33.      * 由 KeyStore獲得私鑰  
  34.      *   
  35.      * @param keyStorePath  
  36.      * @param alias  
  37.      * @param password  
  38.      * @return  
  39.      * @throws Exception  
  40.      */  
  41.     private static PrivateKey getPrivateKey(String keyStorePath, String alias,   
  42.             String password) throws Exception {   
  43.         KeyStore ks = getKeyStore(keyStorePath, password);   
  44.         PrivateKey key = (PrivateKey) ks.getKey(alias, password.toCharArray());   
  45.         return key;   
  46.     }   
  47.   
  48.     /**  
  49.      * 由 Certificate獲得公鑰  
  50.      *   
  51.      * @param certificatePath  
  52.      * @return  
  53.      * @throws Exception  
  54.      */  
  55.     private static PublicKey getPublicKey(String certificatePath)   
  56.             throws Exception {   
  57.         Certificate certificate = getCertificate(certificatePath);   
  58.         PublicKey key = certificate.getPublicKey();   
  59.         return key;   
  60.     }   
  61.   
  62.     /**  
  63.      * 獲得Certificate  
  64.      *   
  65.      * @param certificatePath  
  66.      * @return  
  67.      * @throws Exception  
  68.      */  
  69.     private static Certificate getCertificate(String certificatePath)   
  70.             throws Exception {   
  71.         CertificateFactory certificateFactory = CertificateFactory   
  72.                 .getInstance(X509);   
  73.         FileInputStream in = new FileInputStream(certificatePath);   
  74.   
  75.         Certificate certificate = certificateFactory.generateCertificate(in);   
  76.         in.close();   
  77.   
  78.         return certificate;   
  79.     }   
  80.   
  81.     /**  
  82.      * 獲得Certificate  
  83.      *   
  84.      * @param keyStorePath  
  85.      * @param alias  
  86.      * @param password  
  87.      * @return  
  88.      * @throws Exception  
  89.      */  
  90.     private static Certificate getCertificate(String keyStorePath,   
  91.             String alias, String password) throws Exception {   
  92.         KeyStore ks = getKeyStore(keyStorePath, password);   
  93.         Certificate certificate = ks.getCertificate(alias);   
  94.   
  95.         return certificate;   
  96.     }   
  97.   
  98.     /**  
  99.      * 獲得KeyStore  
  100.      *   
  101.      * @param keyStorePath  
  102.      * @param password  
  103.      * @return  
  104.      * @throws Exception  
  105.      */  
  106.     private static KeyStore getKeyStore(String keyStorePath, String password)   
  107.             throws Exception {   
  108.         FileInputStream is = new FileInputStream(keyStorePath);   
  109.         KeyStore ks = KeyStore.getInstance(KEY_STORE);   
  110.         ks.load(is, password.toCharArray());   
  111.         is.close();   
  112.         return ks;   
  113.     }   
  114.   
  115.     /**  
  116.      * 私鑰加密  
  117.      *   
  118.      * @param data  
  119.      * @param keyStorePath  
  120.      * @param alias  
  121.      * @param password  
  122.      * @return  
  123.      * @throws Exception  
  124.      */  
  125.     public static byte[] encryptByPrivateKey(byte[] data, String keyStorePath,   
  126.             String alias, String password) throws Exception {   
  127.         // 取得私鑰   
  128.         PrivateKey privateKey = getPrivateKey(keyStorePath, alias, password);   
  129.   
  130.         // 對數(shù)據(jù)加密   
  131.         Cipher cipher = Cipher.getInstance(privateKey.getAlgorithm());   
  132.         cipher.init(Cipher.ENCRYPT_MODE, privateKey);   
  133.   
  134.         return cipher.doFinal(data);   
  135.   
  136.     }   
  137.   
  138.     /**  
  139.      * 私鑰解密  
  140.      *   
  141.      * @param data  
  142.      * @param keyStorePath  
  143.      * @param alias  
  144.      * @param password  
  145.      * @return  
  146.      * @throws Exception  
  147.      */  
  148.     public static byte[] decryptByPrivateKey(byte[] data, String keyStorePath,   
  149.             String alias, String password) throws Exception {   
  150.         // 取得私鑰   
  151.         PrivateKey privateKey = getPrivateKey(keyStorePath, alias, password);   
  152.   
  153.         // 對數(shù)據(jù)加密   
  154.         Cipher cipher = Cipher.getInstance(privateKey.getAlgorithm());   
  155.         cipher.init(Cipher.DECRYPT_MODE, privateKey);   
  156.   
  157.         return cipher.doFinal(data);   
  158.   
  159.     }   
  160.   
  161.     /**  
  162.      * 公鑰加密  
  163.      *   
  164.      * @param data  
  165.      * @param certificatePath  
  166.      * @return  
  167.      * @throws Exception  
  168.      */  
  169.     public static byte[] encryptByPublicKey(byte[] data, String certificatePath)   
  170.             throws Exception {   
  171.   
  172.         // 取得公鑰   
  173.         PublicKey publicKey = getPublicKey(certificatePath);   
  174.         // 對數(shù)據(jù)加密   
  175.         Cipher cipher = Cipher.getInstance(publicKey.getAlgorithm());   
  176.         cipher.init(Cipher.ENCRYPT_MODE, publicKey);   
  177.   
  178.         return cipher.doFinal(data);   
  179.   
  180.     }   
  181.   
  182.     /**  
  183.      * 公鑰解密  
  184.      *   
  185.      * @param data  
  186.      * @param certificatePath  
  187.      * @return  
  188.      * @throws Exception  
  189.      */  
  190.     public static byte[] decryptByPublicKey(byte[] data, String certificatePath)   
  191.             throws Exception {   
  192.         // 取得公鑰   
  193.         PublicKey publicKey = getPublicKey(certificatePath);   
  194.   
  195.         // 對數(shù)據(jù)加密   
  196.         Cipher cipher = Cipher.getInstance(publicKey.getAlgorithm());   
  197.         cipher.init(Cipher.DECRYPT_MODE, publicKey);   
  198.   
  199.         return cipher.doFinal(data);   
  200.   
  201.     }   
  202.   
  203.     /**  
  204.      * 驗證Certificate  
  205.      *   
  206.      * @param certificatePath  
  207.      * @return  
  208.      */  
  209.     public static boolean verifyCertificate(String certificatePath) {   
  210.         return verifyCertificate(new Date(), certificatePath);   
  211.     }   
  212.   
  213.     /**  
  214.      * 驗證Certificate是否過期或無效  
  215.      *   
  216.      * @param date  
  217.      * @param certificatePath  
  218.      * @return  
  219.      */  
  220.     public static boolean verifyCertificate(Date date, String certificatePath) {   
  221.         boolean status = true;   
  222.         try {   
  223.             // 取得證書   
  224.             Certificate certificate = getCertificate(certificatePath);   
  225.             // 驗證證書是否過期或無效   
  226.             status = verifyCertificate(date, certificate);   
  227.         } catch (Exception e) {   
  228.             status = false;   
  229.         }   
  230.         return status;   
  231.     }   
  232.   
  233.     /**  
  234.      * 驗證證書是否過期或無效  
  235.      *   
  236.      * @param date  
  237.      * @param certificate  
  238.      * @return  
  239.      */  
  240.     private static boolean verifyCertificate(Date date, Certificate certificate) {   
  241.         boolean status = true;   
  242.         try {   
  243.             X509Certificate x509Certificate = (X509Certificate) certificate;   
  244.             x509Certificate.checkValidity(date);   
  245.         } catch (Exception e) {   
  246.             status = false;   
  247.         }   
  248.         return status;   
  249.     }   
  250.   
  251.     /**  
  252.      * 簽名  
  253.      *   
  254.      * @param keyStorePath  
  255.      * @param alias  
  256.      * @param password  
  257.      *   
  258.      * @return  
  259.      * @throws Exception  
  260.      */  
  261.     public static byte[] sign(byte[] sign, String keyStorePath, String alias,   
  262.             String password) throws Exception {   
  263.         // 獲得證書   
  264.         X509Certificate x509Certificate = (X509Certificate) getCertificate(   
  265.                 keyStorePath, alias, password);   
  266.         // 獲取私鑰   
  267.         KeyStore ks = getKeyStore(keyStorePath, password);   
  268.         // 取得私鑰   
  269.         PrivateKey privateKey = (PrivateKey) ks.getKey(alias, password   
  270.                 .toCharArray());   
  271.   
  272.         // 構(gòu)建簽名   
  273.         Signature signature = Signature.getInstance(x509Certificate   
  274.                 .getSigAlgName());   
  275.         signature.initSign(privateKey);   
  276.         signature.update(sign);   
  277.         return signature.sign();   
  278.     }   
  279.   
  280.     /**  
  281.      * 驗證簽名  
  282.      *   
  283.      * @param data  
  284.      * @param sign  
  285.      * @param certificatePath  
  286.      * @return  
  287.      * @throws Exception  
  288.      */  
  289.     public static boolean verify(byte[] data, byte[] sign,   
  290.             String certificatePath) throws Exception {   
  291.         // 獲得證書   
  292.         X509Certificate x509Certificate = (X509Certificate) getCertificate(certificatePath);   
  293.         // 獲得公鑰   
  294.         PublicKey publicKey = x509Certificate.getPublicKey();   
  295.         // 構(gòu)建簽名   
  296.         Signature signature = Signature.getInstance(x509Certificate   
  297.                 .getSigAlgName());   
  298.         signature.initVerify(publicKey);   
  299.         signature.update(data);   
  300.   
  301.         return signature.verify(sign);   
  302.   
  303.     }   
  304.   
  305.     /**  
  306.      * 驗證Certificate  
  307.      *   
  308.      * @param keyStorePath  
  309.      * @param alias  
  310.      * @param password  
  311.      * @return  
  312.      */  
  313.     public static boolean verifyCertificate(Date date, String keyStorePath,   
  314.             String alias, String password) {   
  315.         boolean status = true;   
  316.         try {   
  317.             Certificate certificate = getCertificate(keyStorePath, alias,   
  318.                     password);   
  319.             status = verifyCertificate(date, certificate);   
  320.         } catch (Exception e) {   
  321.             status = false;   
  322.         }   
  323.         return status;   
  324.     }   
  325.   
  326.     /**  
  327.      * 驗證Certificate  
  328.      *   
  329.      * @param keyStorePath  
  330.      * @param alias  
  331.      * @param password  
  332.      * @return  
  333.      */  
  334.     public static boolean verifyCertificate(String keyStorePath, String alias,   
  335.             String password) {   
  336.         return verifyCertificate(new Date(), keyStorePath, alias, password);   
  337.     }   
  338. }  

相信上述代碼已經(jīng)幫朋友們解決了相當多的問題,!
給出測試類:
Java代碼 復制代碼
  1. package org.zlex.pfx;   
  2.   
  3. import static org.junit.Assert.*;   
  4.   
  5. import org.apache.commons.codec.binary.Hex;   
  6. import org.junit.Test;   
  7.   
  8. /**  
  9.  * 證書操作驗證類  
  10.  *   
  11.  * @author <a href="mailto:[email protected]">梁棟</a>  
  12.  * @version 1.0  
  13.  * @since 1.0  
  14.  */  
  15. public class CertificateCoderTest {   
  16.     private String password = "123456";   
  17.     private String alias = "1";   
  18.     private String certificatePath = "zlex.crt";   
  19.     private String keyStorePath = "zlex.keystore";   
  20.   
  21.     @Test  
  22.     public void test() throws Exception {   
  23.         System.err.println("公鑰加密——私鑰解密");   
  24.         String inputStr = "Ceritifcate";   
  25.         byte[] data = inputStr.getBytes();   
  26.   
  27.         byte[] encrypt = CertificateCoder.encryptByPublicKey(data,   
  28.                 certificatePath);   
  29.   
  30.         byte[] decrypt = CertificateCoder.decryptByPrivateKey(encrypt,   
  31.                 keyStorePath, alias, password);   
  32.         String outputStr = new String(decrypt);   
  33.   
  34.         System.err.println("加密前: " + inputStr + "\n\r" + "解密后: " + outputStr);   
  35.   
  36.         // 驗證數(shù)據(jù)一致   
  37.         assertArrayEquals(data, decrypt);   
  38.   
  39.         // 驗證證書有效   
  40.         assertTrue(CertificateCoder.verifyCertificate(certificatePath));   
  41.   
  42.     }   
  43.   
  44.     @Test  
  45.     public void testSign() throws Exception {   
  46.         System.err.println("私鑰加密——公鑰解密");   
  47.   
  48.         String inputStr = "sign";   
  49.         byte[] data = inputStr.getBytes();   
  50.   
  51.         byte[] encodedData = CertificateCoder.encryptByPrivateKey(data,   
  52.                 keyStorePath, alias, password);   
  53.   
  54.         byte[] decodedData = CertificateCoder.decryptByPublicKey(encodedData,   
  55.                 certificatePath);   
  56.   
  57.         String outputStr = new String(decodedData);   
  58.         System.err.println("加密前: " + inputStr + "\n\r" + "解密后: " + outputStr);   
  59.         assertEquals(inputStr, outputStr);   
  60.   
  61.         System.err.println("私鑰簽名——公鑰驗證簽名");   
  62.         // 產(chǎn)生簽名   
  63.         byte[] sign = CertificateCoder.sign(encodedData, keyStorePath, alias,   
  64.                 password);   
  65.         System.err.println("簽名:\r" + Hex.encodeHexString(sign));   
  66.   
  67.         // 驗證簽名   
  68.         boolean status = CertificateCoder.verify(encodedData, sign,   
  69.                 certificatePath);   
  70.         System.err.println("狀態(tài):\r" + status);   
  71.         assertTrue(status);   
  72.   
  73.     }   
  74. }  

第一個測試方法,,用于提取公鑰/私鑰進行加密/解密操作。
第二個測試方法,,用于提取簽名算法進行簽名/驗證操作,。



OK,任務完成,,密鑰成功提取,,剩下的都是代碼基本功了!
  • 大小: 18.3 KB
  • 大小: 23 KB
  • 大小: 12.7 KB
  • 大小: 22.4 KB
  • 大小: 22.4 KB
3 樓 snowolf 2010-11-18   引用
maybe723 寫道
那對于單個cer格式的證書,,這種證書沒有私鑰而只有公鑰和CA的簽名吧,,這種證書在雙向認證中,服務器端是不能認別出對方的身份并做簽名的吧,,而做簽名要使用私鑰,,那這個私鑰是保存在哪里?

cer證書文件本身就是算法以及公鑰的載體,而私鑰就需要私密保存,,不對外公布了,!
2 樓 maybe723 2010-11-17   引用
那對于單個cer格式的證書,這種證書沒有私鑰而只有公鑰和CA的簽名吧,,這種證書在雙向認證中,,服務器端是不能認別出對方的身份并做簽名的吧,而做簽名要使用私鑰,,那這個私鑰是保存在哪里?
1 樓 wukele 2010-08-12   引用
相信以后會用到,。
 

    本站是提供個人知識管理的網(wǎng)絡存儲空間,所有內(nèi)容均由用戶發(fā)布,,不代表本站觀點,。請注意甄別內(nèi)容中的聯(lián)系方式、誘導購買等信息,,謹防詐騙,。如發(fā)現(xiàn)有害或侵權(quán)內(nèi)容,請點擊一鍵舉報,。
    轉(zhuǎn)藏 分享 獻花(0

    0條評論

    發(fā)表

    請遵守用戶 評論公約

    類似文章 更多