Java密碼學存儲密鑰
使用/生成的密鑰和證書存儲在稱爲密鑰庫的數據庫中。 默認情況下,此數據庫存儲在名爲.keystore
的文件中。
可以使用java.security
包的KeyStore
類訪問此數據庫的內容。它管理三個不同的條目,即PrivateKeyEntry
,SecretKeyEntry
和TrustedCertificateEntry
。
- PrivateKeyEntry
- SecretKeyEntry
- TrustedCertificateEntry
1. 在密鑰庫中存儲密鑰
在本節中,將學習如何在密鑰庫中存儲密鑰。要在密鑰庫中存儲密鑰,請按照以下步驟操作。
第1步:創建KeyStore對象
java.security
包的KeyStore
類的getInstance()
方法接受表示密鑰庫類型的字符串值,並返回KeyStore
對象。
使用getInstance()
方法創建KeyStore
類的對象,如下所示。
// Creating the KeyStore object
KeyStore keyStore = KeyStore.getInstance("JCEKS");
第2步:加載KeyStore對象
KeyStore
類的load()
方法接受表示密鑰庫文件的FileInputStream
對象和指定KeyStore
密碼的String
參數。
通常,KeyStore
存儲在名爲cacerts
的文件中,位於C:/Program Files/Java/jre1.8.0_101 / lib / security /
,其默認密碼爲changeit
,使用load()
方法加載它,如下面圖所示。
//Loading the KeyStore object
char[] password = "changeit".toCharArray();
String path = "C:/Program Files/Java/jre1.8.0_101/lib/security/cacerts";
java.io.FileInputStream fis = new FileInputStream(path);
keyStore.load(fis, password);
第3步:創建KeyStore.ProtectionParameter對象
實例化KeyStore.ProtectionParameter
,如下所示。
//Creating the KeyStore.ProtectionParameter object
KeyStore.ProtectionParameter protectionParam = new KeyStore.PasswordProtection(password);
第4步:創建一個SecretKey對象
通過實例化子類SecretKeySpec
來創建SecretKey
(接口)對象。 在實例化時,需要將密碼和算法作爲參數傳遞給其構造函數,如下所示。
//Creating SecretKey object
SecretKey mySecretKey = new SecretKeySpec(new String(keyPassword).getBytes(), "DSA");
第5步:創建一個SecretKeyEntry對象
通過傳遞在上面步驟中創建的SecretKey
對象來創建SecretKeyEntry
類的對象,如下所示。
//Creating SecretKeyEntry object
KeyStore.SecretKeyEntry secretKeyEntry = new KeyStore.SecretKeyEntry(mySecretKey);
第5步:設置KeyStore的條目
KeyStore
類的setEntry()
方法接受表示密鑰庫條目別名的String參數,SecretKeyEntry
對象,ProtectionParameter
對象,並將條目存儲在給定別名下。
使用setEntry()
方法將條目設置爲密鑰庫,如下所示。
//Set the entry to the keystore
keyStore.setEntry("secretKeyAlias", secretKeyEntry, protectionParam);
示例
以下示例將密鑰存儲到cacerts
文件(Windows 10操作系統)中存在的密鑰庫中。示例代碼:
import java.io.FileInputStream;
import java.security.KeyStore;
import javax.crypto.SecretKey;
import javax.crypto.spec.SecretKeySpec;
public class StoringIntoKeyStore{
public static void main(String args[]) throws Exception {
//Creating the KeyStore object
KeyStore keyStore = KeyStore.getInstance("JCEKS");
//Loading the KeyStore object
char[] password = "changeit".toCharArray();
String path = "C:/Program Files/Java/jre1.8.0_101/lib/security/cacerts";
java.io.FileInputStream fis = new FileInputStream(path);
keyStore.load(fis, password);
//Creating the KeyStore.ProtectionParameter object
KeyStore.ProtectionParameter protectionParam = new KeyStore.PasswordProtection(password);
//Creating SecretKey object
SecretKey mySecretKey = new SecretKeySpec("myPassword".getBytes(), "DSA");
//Creating SecretKeyEntry object
KeyStore.SecretKeyEntry secretKeyEntry = new KeyStore.SecretKeyEntry(mySecretKey);
keyStore.setEntry("secretKeyAlias", secretKeyEntry, protectionParam);
//Storing the KeyStore object
java.io.FileOutputStream fos = null;
fos = new java.io.FileOutputStream("newKeyStoreName");
keyStore.store(fos, password);
System.out.println("data stored");
}
}
執行上面示例代碼,得到以下結果: