轉載自 這裡
密碼學簡介 – 加密與解密 :
加密是一個將欲加密的資料用一些數學運算轉成一團令人看不懂的東西的過程; 解密則是將加密文轉換回原始 文字的過程。這個過程中,扮演原始文字與加密文字之間轉換的數學演算法稱為Cipher :
現代的Cipher多半會用Key來加密與解密資料。所謂Key是指一個機密值,我們可將它視為一通行密碼。加密文 字必需使用對映的Key才能解密為原始文字.
- 對稱型Cipher
對稱型Cipher在傳送端與接收端所用的Key是一樣的,如圖2所示,對稱型Cipher又叫Private Key Cipher,因為Key 的值只有傳送端和接收端知道。如果有第三者知道了Private Key值,也就能解開加密的資料 :
- 非對稱型Cipher
非對稱型的Cipher又叫Public Key Cipher,Cipher除了Private Key外,還會引進一可以隨意散發的Public Key。被 Public Key加密的資料只有相對映的Private Key可以解開,同樣的被Private Key加密的資料也只有相對映的Public Key 可以解開。如圖3所示,顯示了非對稱型Cipher的運作過程 :
- 訊息摘要 (Message Digest)
訊息摘要是從一組輸入資料計算所得的一個特別數字,其原理運作就如hash function一般。在密碼學的運用裡, 一般是用來驗證資料是否被竄改.
JCE下載 :
因為美國法規的限制,Sun在JDK裡只提供了少數的加密方法,其餘大部份則只在SunJCE裡提供,而且SunJCE的 API限制只有美國、加拿大地區可以下載。表1為Sun及SunJCE分別支援的加密演算法 :
雖然美國法規有這樣的限定,但是在美國境外也已經有廠商實作出JCE,並且可以在網路上直接下載,表2就是 下載網址的列表 :
JCE安裝 :
1. 解壓縮到JDK目錄下
2. Set ClassPath= C:\JDK\bin\cryptix-jce-api.jar;C:\JDK\bin\cryptix-jce-compat.jar;C:\JDK\bin\cryptix-jce-provider.jar …
3. 在JDK/lib/security/java.security中加入
程式範例 :
在舉例之前,我先完成一個公用類別,用來將字串轉成十六進位表示法 :
- 訊息摘要 (message digest, 以SHA1為例)
產生訊息摘要的步驟:
比較兩個訊息摘要是否相同時,可呼叫isEqual.
- 訊息認證碼 (MAC, 以HmacSHA1為例)
訊息認證碼只是在產生訊息摘要的過程裡,加進一把key做為保護,目的是使訊息摘要更難被破解. 產生訊息認證碼的步驟 :
- 加密與解密 (以DES為例)
這裡舉的加密/解密是屬對稱型Cipher; 在金融交易裡,常用對稱型Cipher來加/解密資料. 加密/解密的步驟 :
- 產生簽章與認證 (以DSA為例)
數位簽章常用在網路上做個人身份確認. 產生簽章的步驟 :
認證的步驟 :
Sample1: 產生Private/Public Key
Sample2: 產生簽章與認證
密碼學簡介 – 加密與解密 :
加密是一個將欲加密的資料用一些數學運算轉成一團令人看不懂的東西的過程; 解密則是將加密文轉換回原始 文字的過程。這個過程中,扮演原始文字與加密文字之間轉換的數學演算法稱為Cipher :
現代的Cipher多半會用Key來加密與解密資料。所謂Key是指一個機密值,我們可將它視為一通行密碼。加密文 字必需使用對映的Key才能解密為原始文字.
- 對稱型Cipher
對稱型Cipher在傳送端與接收端所用的Key是一樣的,如圖2所示,對稱型Cipher又叫Private Key Cipher,因為Key 的值只有傳送端和接收端知道。如果有第三者知道了Private Key值,也就能解開加密的資料 :
- 非對稱型Cipher
非對稱型的Cipher又叫Public Key Cipher,Cipher除了Private Key外,還會引進一可以隨意散發的Public Key。被 Public Key加密的資料只有相對映的Private Key可以解開,同樣的被Private Key加密的資料也只有相對映的Public Key 可以解開。如圖3所示,顯示了非對稱型Cipher的運作過程 :
- 訊息摘要 (Message Digest)
訊息摘要是從一組輸入資料計算所得的一個特別數字,其原理運作就如hash function一般。在密碼學的運用裡, 一般是用來驗證資料是否被竄改.
JCE下載 :
因為美國法規的限制,Sun在JDK裡只提供了少數的加密方法,其餘大部份則只在SunJCE裡提供,而且SunJCE的 API限制只有美國、加拿大地區可以下載。表1為Sun及SunJCE分別支援的加密演算法 :
雖然美國法規有這樣的限定,但是在美國境外也已經有廠商實作出JCE,並且可以在網路上直接下載,表2就是 下載網址的列表 :
JCE安裝 :
1. 解壓縮到JDK目錄下
2. Set ClassPath= C:\JDK\bin\cryptix-jce-api.jar;C:\JDK\bin\cryptix-jce-compat.jar;C:\JDK\bin\cryptix-jce-provider.jar …
3. 在JDK/lib/security/java.security中加入
程式範例 :
在舉例之前,我先完成一個公用類別,用來將字串轉成十六進位表示法 :
- public class Msg {
- public static String toHexString(byte[] b) {
- StringBuffer hexString = new StringBuffer();
- String plainText;
- for (int i = 0; i < b.length; i++) {
- plainText = Integer.toHexString(0xFF & b[i]);
- if (plainText.length() < 2) {
- plainText = "0" + plainText;
- }
- hexString.append(plainText);
- }
- return hexString.toString();
- }
- }
產生訊息摘要的步驟:
- import java.security.*;
- public class SHA extends Object {
- public static void main(String[] args) throws Exception
- {
- MessageDigest md = MessageDigest.getInstance("SHA");
- md.update(args[0].getBytes());
- byte[] digest = md.digest();
- System.out.println(Msg.toHexString(digest));
- }
- }
- 訊息認證碼 (MAC, 以HmacSHA1為例)
訊息認證碼只是在產生訊息摘要的過程裡,加進一把key做為保護,目的是使訊息摘要更難被破解. 產生訊息認證碼的步驟 :
- import java.security.*;
- import javax.crypto.*;
- import javax.crypto.spec.*;
- public class MacSHA {
- public static void main(String[] args)
- {
- SecureRandom sr = new SecureRandom();
- byte[] keyBytes = new byte[20];
- sr.nextBytes(keyBytes);
- SecretKey key = new SecretKeySpec(keyBytes, "HmacSHA");
- try {
- Mac m = Mac.getInstance("HmacSHA");
- m.init(key);
- m.update(args[0].getBytes());
- byte[] mac = m.doFinal();
- System.out.println(Msg.toHexString(mac));
- }
- catch (Exception e) {
- System.out.println("Exception!!");
- }
- }
- }
這裡舉的加密/解密是屬對稱型Cipher; 在金融交易裡,常用對稱型Cipher來加/解密資料. 加密/解密的步驟 :
- import java.io.*;
- import java.security.*;
- import javax.crypto.*;
- public class PwdDES {
- public static final int kBufferSize = 8192;
- public static void main(String[] args) throws Exception {
- if (args.length < 4) {
- System.out.println("Usage: java PwdDES -e|-d passwd inputfile outputfile");
- return;
- }
- //Get or create key.
- Key key;
- KeyGenerator generator = KeyGenerator.getInstance("DES");
- generator.init(new SecureRandom(args[1].getBytes()));
- key = generator.generateKey();
- //Get a cipher object
- Cipher cipher = Cipher.getInstance("DES/ECB/PKCS#5");
- //Encrypt or decrypt
- if (args[0].indexOf("e") != -1)
- cipher.init(Cipher.ENCRYPT_MODE, key);
- else
- cipher.init(Cipher.DECRYPT_MODE, key);
- FileInputStream in = new FileInputStream(args[2]);
- FileOutputStream fileOut = new FileOutputStream(args[3]);
- CipherOutputStream out = new CipherOutputStream(fileOut, cipher);
- byte[] buffer = new byte[kBufferSize];
- int length;
- while ((length = in.read(buffer)) != -1)
- out.write(buffer, 0, length);
- in.close();
- out.close();
- }
- }
數位簽章常用在網路上做個人身份確認. 產生簽章的步驟 :
認證的步驟 :
Sample1: 產生Private/Public Key
- import java.security.*;
- import java.security.KeyPairGenerator;
- import java.security.KeyPair;
- import java.io.*;
- public class KeyPair1 {
- public static void main(String[] args)
- {
- try {
- KeyPairGenerator genKeyPair = KeyPairGenerator.getInstance("DSA");
- genKeyPair.initialize(1024, new SecureRandom());
- KeyPair kpKey = genKeyPair.genKeyPair();
- PrivateKey prKey = kpKey.getPrivate();
- PublicKey puKey = kpKey.getPublic();
- ObjectOutputStream osPrivate = new ObjectOutputStream(new FileOutputStream("D:\\Private.Key"));
- ObjectOutputStream osPublic = new ObjectOutputStream(new FileOutputStream("D:\\Public.Key"));
- osPrivate.writeObject(prKey);
- osPublic.writeObject(puKey);
- osPrivate.close();
- osPublic.close();
- }
- catch (Exception e) {
- System.out.println("Error");
- }
- }
- }
- import java.io.*;
- import java.security.*;
- import java.security.Signature;
- import java.security.cert.*;
- public class GenSign {
- public static void main(String[] args) throws Exception {
- String options = args[0];
- String messagefile = args[1];
- String signaturefile = args[2];
- Signature signature = Signature.getInstance("DSA");
- if (options.indexOf("s") != -1) {
- ObjectInputStream is = new ObjectInputStream(new FileInputStream("D:\\Private.key"));
- PrivateKey priKey = (PrivateKey) is.readObject();
- signature.initSign(priKey);
- is.close();
- }
- else {
- ObjectInputStream is = new ObjectInputStream(new FileInputStream("D:\\Public.key"));
- PublicKey pubKey = (PublicKey) is.readObject();
- signature.initVerify(pubKey);
- is.close();
- }
- FileInputStream in = new FileInputStream(messagefile);
- byte[] buffer = new byte[8192];
- int length;
- while ((length = in.read(buffer))!= -1)
- signature.update(buffer, 0, length);
- in.close();
- if (options.indexOf("s") != -1) {
- FileOutputStream out = new FileOutputStream(signaturefile);
- byte[] raw = signature.sign();
- out.write(raw);
- out.close();
- }
- else {
- FileInputStream sigIn = new FileInputStream(signaturefile);
- byte[] raw = new byte[sigIn.available()];
- sigIn.read(raw);
- sigIn.close();
- if (signature.verify(raw))
- System.out.println("The signature is good.");
- else
- System.out.println("The signature is bad.");
- }
- }
- }
This message was edited 4 times. Last update was at 01/04/2011 23:47:49
沒有留言:
張貼留言