* BigInteger
1
| public BigInteger(int signum, byte[] magnitude)
|
将BigInteger的符号幅度表示转换为BigInteger。
符号表示为整数符号值:-1表示负数,0表示零,或1表示正数。 大小是big-endian字节顺序的字节数组:最重要的字节是第0个元素。
允许使用零长度数组,并且将导致BigInteger值为0,无论signum是-1,0还是1.假定magnitude
数组在构造函数调用期间保持不变。
BigInteger(1, x)
就代表根据x字节流生成正数
编码算法
URL编码
- 如果字符是
A
~Z
, a
~z
, 0
~9
以及-
、_
、.
、*
,则保持不变;
- 如果是其他字符,先转换为UTF-8编码,然后对每个字节以
%XX
表示。
Java标准库提供了一个URLEncoder
类来对任意字符串进行URL编码,Java标准库的URLDecoder
就可以解码:
1 2 3 4 5 6 7 8 9 10 11 12 13 14
| import java.net.URLEncoder; import java.net.URLDecoder; import java.nio.charset.StandardCharsets;
public class Main { public static void main(String[] args) { String encoded = URLEncoder.encode("中文!", StandardCharsets.UTF_8); System.out.println(encoded); String decoded = URLDecoder.decode("%E4%B8%AD%E6%96%87%21", StandardCharsets.UTF_8); } }
|
Base64编码
Base64编码可以把任意长度的二进制数据变为纯文本,且只包含A
~Z
、 a
~z
、 0
~9
、 +
、 /
、 =
这些字符。
原理: 把3字节的二进制数据按6bit一组,转为16进制,得到编码后的字符串。
如果输入的byte[]
数组长度不是3的整数倍,,需要对输入的末尾补一个或两个0x00
,编码后,在结尾加一个=
表示补充了1个0x00
,加两个=
表示补充了2个0x00
,解码的时候,去掉末尾补充的一个或两个0x00
即可。
实际上,因为编码后的长度加上=
总是4的倍数,所以即使不加=
也可以计算出原始输入的byte[]
。Base64编码的时候可以用withoutPadding()
去掉=
,解码出来的结果是一样的:
1 2 3 4 5 6 7 8 9 10 11 12 13 14
| import java.util.*;
public class Main { public static void main(String[] args) { byte[] input = new byte[] { (byte) 0xe4, (byte) 0xb8, (byte) 0xad, 0x21 }; String b64encoded = Base64.getEncoder().encodeToString(input); String b64encoded2 = Base64.getEncoder().withoutPadding().encodeToString(input); System.out.println(b64encoded); System.out.println(b64encoded2); byte[] output = Base64.getDecoder().decode(b64encoded2); System.out.println(Arrays.toString(output)); } }
|
Base64编码的缺点是传输效率会降低,因为它把原始数据的长度增加了1/3。
哈希算法
常用哈希算法
算法 |
输出长度(位) |
输出长度(字节) |
MD5 |
128 bits |
16 bytes |
SHA-1 |
160 bits |
20 bytes |
RipeMD-160 |
160 bits |
20 bytes |
SHA-256 |
256 bits |
32 bytes |
SHA-512 |
512 bits |
64 bytes |
接口
Java标准库提供了常用的哈希算法,并且有一套统一的接口。
1 2 3 4 5 6 7 8 9 10 11 12 13 14
| import java.math.BigInteger; import java.security.MessageDigest;
public class Main { public static void main(String[] args) throws Exception { MessageDigest md = MessageDigest.getInstance("MD5"); md.update("Hello".getBytes("UTF-8")); md.update("World".getBytes("UTF-8")); byte[] result = md.digest(); System.out.println(new BigInteger(1, result).toString(16)); } }
|
彩虹表与加盐
彩虹表指常见口令对应的哈希表
加盐(salt)指对每个口令额外添加随机数 digest = hash(salt+inputPassword)
第三方库——BouncyCastle
BouncyCastle是一个开源的第三方算法提供商;
BouncyCastle提供了很多Java标准库没有提供的哈希算法和加密算法;
使用第三方算法前需要通过Security.addProvider()
注册。
1 2 3 4 5 6 7 8 9 10 11
| public class Main { public static void main(String[] args) throws Exception { Security.addProvider(new BouncyCastleProvider()); MessageDigest md = MessageDigest.getInstance("RipeMD160"); md.update("HelloWorld".getBytes("UTF-8")); byte[] result = md.digest(); System.out.println(new BigInteger(1, result).toString(16)); } }
|
Hmac算法
salt可以看作是一个额外的“认证码”,Hmac算法就是一种基于密钥的消息认证码算法,它的全称是Hash-based Message Authentication Code,是一种更安全的消息摘要算法。
Hmac算法总是和某种哈希算法配合起来用的。例如,我们使用MD5算法,对应的就是HmacMD5算法,它相当于“加盐”的MD5, 计算的摘要长度和原摘要算法长度相同 。
和MD5相比,使用HmacMD5的 步骤 是:
- 通过名称
HmacMD5
获取KeyGenerator
实例;
- 通过
KeyGenerator
创建一个SecretKey
实例;
- 通过名称
HmacMD5
获取Mac
实例;
- 用
SecretKey
初始化Mac
实例;
- 对
Mac
实例反复调用update(byte[])
输入数据;
- 调用
Mac
实例的doFinal()
获取最终的哈希值。
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24
| import java.math.BigInteger; import javax.crypto.*;
public class Main { public static void main(String[] args) throws Exception { KeyGenerator keyGen = KeyGenerator.getInstance("HmacMD5"); SecretKey key = keyGen.generateKey(); byte[] skey = key.getEncoded(); System.out.println(new BigInteger(1, skey).toString(16)); Mac mac = Mac.getInstance("HmacMD5"); mac.init(key); mac.update("HelloWorld".getBytes("UTF-8")); byte[] result = mac.doFinal(); System.out.println(new BigInteger(1, result).toString(16)); } }
|
验证时,从一个byte[]
数组恢复SecretKey
1
| SecretKey key = new SecretKeySpec(hkey, "HmacMD5");
|
对称加密算法
常用的对称加密算法
算法 |
密钥长度 |
工作模式 |
填充模式 |
DES |
56/64 |
ECB/CBC/PCBC/CTR/… |
NoPadding/PKCS5Padding/… |
AES |
128/192/256 |
ECB/CBC/PCBC/CTR/… |
NoPadding/PKCS5Padding/PKCS7Padding/… |
IDEA |
128 |
ECB |
PKCS5Padding/PKCS7Padding/… |
JAVA调用对称加密接口步骤
Java标准库提供的对称加密接口非常简单,使用时按以下步骤编写代码:
- 根据算法名称/工作模式/填充模式获取Cipher实例;
- 根据算法名称初始化一个SecretKey实例,密钥必须是指定长度;
- 使用SerectKey初始化Cipher实例,并设置加密或解密模式;
- 传入明文或密文,获得密文或明文。
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43
| import java.security.*; import java.util.Base64;
import javax.crypto.*; import javax.crypto.spec.*;
public class Main { public static void main(String[] args) throws Exception { String message = "Hello, world!"; System.out.println("Message: " + message); byte[] key = "1234567890abcdef".getBytes("UTF-8"); byte[] data = message.getBytes("UTF-8"); byte[] encrypted = encrypt(key, data); System.out.println("Encrypted: " + Base64.getEncoder().encodeToString(encrypted)); byte[] decrypted = decrypt(key, encrypted); System.out.println("Decrypted: " + new String(decrypted, "UTF-8")); }
public static byte[] encrypt(byte[] key, byte[] input) throws GeneralSecurityException { Cipher cipher = Cipher.getInstance("AES/ECB/PKCS5Padding"); SecretKey keySpec = new SecretKeySpec(key, "AES"); cipher.init(Cipher.ENCRYPT_MODE, keySpec); return cipher.doFinal(input); }
public static byte[] decrypt(byte[] key, byte[] input) throws GeneralSecurityException { Cipher cipher = Cipher.getInstance("AES/ECB/PKCS5Padding"); SecretKey keySpec = new SecretKeySpec(key, "AES"); cipher.init(Cipher.DECRYPT_MODE, keySpec); return cipher.doFinal(input); } }
|
PBE口令加密算法
PBE就是Password Based Encryption的缩写,它的作用如下:
1
| key = generate(userPassword, secureRandomPassword);
|
PBE的作用就是把用户输入的口令和一个安全随机的口令采用杂凑后计算出真正的密钥。
让用户输入一个口令,然后生成一个随机数,通过PBE算法计算出真正的口令,再进行加密
使用PBE时,我们还需要引入BouncyCastle,并指定算法是PBEwithSHA1and128bitAES-CBC-BC
。
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42
| public class Main { public static void main(String[] args) throws Exception { Security.addProvider(new BouncyCastleProvider()); String message = "Hello, world!"; String password = "hello12345"; byte[] salt = SecureRandom.getInstanceStrong().generateSeed(16); System.out.printf("salt: %032x\n", new BigInteger(1, salt)); byte[] data = message.getBytes("UTF-8"); byte[] encrypted = encrypt(password, salt, data); System.out.println("encrypted: " + Base64.getEncoder().encodeToString(encrypted)); byte[] decrypted = decrypt(password, salt, encrypted); System.out.println("decrypted: " + new String(decrypted, "UTF-8")); }
public static byte[] encrypt(String password, byte[] salt, byte[] input) throws GeneralSecurityException { PBEKeySpec keySpec = new PBEKeySpec(password.toCharArray()); SecretKeyFactory skeyFactory = SecretKeyFactory.getInstance("PBEwithSHA1and128bitAES-CBC-BC"); SecretKey skey = skeyFactory.generateSecret(keySpec); PBEParameterSpec pbeps = new PBEParameterSpec(salt, 1000); Cipher cipher = Cipher.getInstance("PBEwithSHA1and128bitAES-CBC-BC"); cipher.init(Cipher.ENCRYPT_MODE, skey, pbeps); return cipher.doFinal(input); }
public static byte[] decrypt(String password, byte[] salt, byte[] input) throws GeneralSecurityException { PBEKeySpec keySpec = new PBEKeySpec(password.toCharArray()); SecretKeyFactory skeyFactory = SecretKeyFactory.getInstance("PBEwithSHA1and128bitAES-CBC-BC"); SecretKey skey = skeyFactory.generateSecret(keySpec); PBEParameterSpec pbeps = new PBEParameterSpec(salt, 1000); Cipher cipher = Cipher.getInstance("PBEwithSHA1and128bitAES-CBC-BC"); cipher.init(Cipher.DECRYPT_MODE, skey, pbeps); return cipher.doFinal(input); } }
|
密钥交换算法——Diffie-Hellman算法
Diffie-Hellman算法是一种密钥交换协议,通信双方通过不安全的信道协商密钥,然后进行对称加密传输。
DH算法没有解决中间人攻击,即甲乙双方并不能确保与自己通信的是否真的是对方。
步骤
- 甲首选选择一个 素数
p
,例如509, 底数 g
,任选,例如5, 随机数 a
,例如123,然后 计算A=g^a mod p
,结果是215,然后,甲 发送p=509
,g=5
,A=215
给乙;
- 乙方收到后,也选择一个 随机数
b
,例如,456,然后 计算B=g^b mod p
,结果是181,乙再同时 计算s=A^b mod p
,结果是121;
- 乙把计算的
B=181
发给甲,甲计算s=B^a mod p
的余数,计算结果与乙算出的结果一样,都是121。
把a
看成甲的私钥,A
看成甲的公钥,b
看成乙的私钥,B
看成乙的公钥
实现
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79
| import java.math.BigInteger; import java.security.*; import java.security.spec.*;
import javax.crypto.KeyAgreement;
public class Main { public static void main(String[] args) { Person bob = new Person("Bob"); Person alice = new Person("Alice");
bob.generateKeyPair(); alice.generateKeyPair();
bob.generateSecretKey(alice.publicKey.getEncoded()); alice.generateSecretKey(bob.publicKey.getEncoded());
bob.printKeys(); alice.printKeys(); } }
class Person { public final String name;
public PublicKey publicKey; private PrivateKey privateKey; private byte[] secretKey;
public Person(String name) { this.name = name; }
public void generateKeyPair() { try { KeyPairGenerator kpGen = KeyPairGenerator.getInstance("DH"); kpGen.initialize(512); KeyPair kp = kpGen.generateKeyPair(); this.privateKey = kp.getPrivate(); this.publicKey = kp.getPublic(); } catch (GeneralSecurityException e) { throw new RuntimeException(e); } }
public void generateSecretKey(byte[] receivedPubKeyBytes) { try { X509EncodedKeySpec keySpec = new X509EncodedKeySpec(receivedPubKeyBytes); KeyFactory kf = KeyFactory.getInstance("DH"); PublicKey receivedPublicKey = kf.generatePublic(keySpec); KeyAgreement keyAgreement = KeyAgreement.getInstance("DH"); keyAgreement.init(this.privateKey); keyAgreement.doPhase(receivedPublicKey, true); this.secretKey = keyAgreement.generateSecret(); } catch (GeneralSecurityException e) { throw new RuntimeException(e); } }
public void printKeys() { System.out.printf("Name: %s\n", this.name); System.out.printf("Private key: %x\n", new BigInteger(1, this.privateKey.getEncoded())); System.out.printf("Public key: %x\n", new BigInteger(1, this.publicKey.getEncoded())); System.out.printf("Secret key: %x\n", new BigInteger(1, this.secretKey)); } }
|
非对称加密算法
非对称加密就是加密和解密使用的不是相同的密钥,只有同一个公钥-私钥对才能正常加解密;
非对称加密的缺点就是运算速度非常慢,比对称加密要慢很多。
所以,在实际应用的时候,非对称加密总是和对称加密一起使用。假设小明需要给小红需要传输加密文件,他俩首先交换了各自的公钥,然后:
- 小明生成一个随机的AES口令,然后用小红的公钥通过RSA加密这个口令,并发给小红;
- 小红用自己的RSA私钥解密得到AES口令;
- 双方使用这个共享的AES口令用AES加密通信。
实现
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65
| import java.math.BigInteger; import java.security.*; import javax.crypto.Cipher;
public class Main { public static void main(String[] args) throws Exception { byte[] plain = "Hello, encrypt use RSA".getBytes("UTF-8"); Person alice = new Person("Alice"); byte[] pk = alice.getPublicKey(); System.out.println(String.format("public key: %x", new BigInteger(1, pk))); byte[] encrypted = alice.encrypt(plain); System.out.println(String.format("encrypted: %x", new BigInteger(1, encrypted))); byte[] sk = alice.getPrivateKey(); System.out.println(String.format("private key: %x", new BigInteger(1, sk))); byte[] decrypted = alice.decrypt(encrypted); System.out.println(new String(decrypted, "UTF-8")); } }
class Person { String name; PrivateKey sk; PublicKey pk;
public Person(String name) throws GeneralSecurityException { this.name = name; KeyPairGenerator kpGen = KeyPairGenerator.getInstance("RSA"); kpGen.initialize(1024); KeyPair kp = kpGen.generateKeyPair(); this.sk = kp.getPrivate(); this.pk = kp.getPublic(); }
public byte[] getPrivateKey() { return this.sk.getEncoded(); }
public byte[] getPublicKey() { return this.pk.getEncoded(); }
public byte[] encrypt(byte[] message) throws GeneralSecurityException { Cipher cipher = Cipher.getInstance("RSA"); cipher.init(Cipher.ENCRYPT_MODE, this.pk); return cipher.doFinal(message); }
public byte[] decrypt(byte[] input) throws GeneralSecurityException { Cipher cipher = Cipher.getInstance("RSA"); cipher.init(Cipher.DECRYPT_MODE, this.sk); return cipher.doFinal(input); } }
|
RSA的公钥和私钥都可以通过getEncoded()
方法获得以byte[]
表示的二进制数据,并根据需要保存到文件中。要从byte[]
数组恢复公钥或私钥,可以这么写:
1 2 3 4 5 6 7 8 9
| byte[] pkData = ... byte[] skData = ... KeyFactory kf = KeyFactory.getInstance("RSA");
X509EncodedKeySpec pkSpec = new X509EncodedKeySpec(pkData); PublicKey pk = kf.generatePublic(pkSpec);
PKCS8EncodedKeySpec skSpec = new PKCS8EncodedKeySpec(skData); PrivateKey sk = kf.generatePrivate(skSpec);
|
以RSA算法为例,它的密钥有256/512/1024/2048/4096等不同的长度。长度越长,密码强度越大,当然计算速度也越慢。
如果修改待加密的byte[]
数据的大小,可以发现,使用512bit的RSA加密时,明文长度不能超过53字节,使用1024bit的RSA加密时,明文长度不能超过117字节,这也是为什么使用RSA的时候,总是配合AES一起使用,即用AES加密任意长度的明文,用RSA加密AES口令。
此外,只使用非对称加密算法不能防止中间人攻击。
签名算法
数字签名就是用发送方的私钥对原始数据进行签名,只有用发送方公钥才能通过签名验证。
- 签名:
signature = encrypt(privateKey, sha256(message))
- 解密:
hash = decrypt(publicKey, signature)
把解密后的哈希与原始消息的哈希进行对比。
数字签名用于:
常用的数字签名算法包括:MD5withRSA/SHA1withRSA/SHA256withRSA/SHA1withDSA/SHA256withDSA/SHA512withDSA/ECDSA等。
实现
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32
| import java.math.BigInteger; import java.nio.charset.StandardCharsets; import java.security.*;
public class Main { public static void main(String[] args) throws GeneralSecurityException { KeyPairGenerator kpGen = KeyPairGenerator.getInstance("RSA"); kpGen.initialize(1024); KeyPair kp = kpGen.generateKeyPair(); PrivateKey sk = kp.getPrivate(); PublicKey pk = kp.getPublic();
byte[] message = "Hello, I am Bob!".getBytes(StandardCharsets.UTF_8);
Signature s = Signature.getInstance("SHA1withRSA"); s.initSign(sk); s.update(message); byte[] signed = s.sign(); System.out.println(String.format("signature: %x", new BigInteger(1, signed)));
Signature v = Signature.getInstance("SHA1withRSA"); v.initVerify(pk); v.update(message); boolean valid = v.verify(signed); System.out.println("valid? " + valid); } }
|
数字证书
数字证书 - 廖雪峰的官方网站 (liaoxuefeng.com)
数字证书就是集合了多种密码学算法,用于实现数据加解密、身份认证、签名等多种功能的一种安全标准。
数字证书采用链式签名管理,即通过根证书(Root CA)去签名下一级证书,这样层层签名,直到最终的用户证书。顶级的Root CA证书已内置在操作系统中。
数字证书存储的是公钥,可以安全公开,而私钥必须严格保密。
在Java程序中,数字证书存储在一种Java专用的key store文件中,JDK提供了一系列命令来创建和管理key store。我们用下面的命令创建一个key store,并设定口令123456:
1
| keytool -storepass 123456 -genkeypair -keyalg RSA -keysize 1024 -sigalg SHA1withRSA -validity 3650 -alias mycert -keystore my.keystore -dname "CN=www.sample.com, OU=sample, O=sample, L=BJ, ST=BJ, C=CN"
|
几个主要的参数是:
- keyalg:指定RSA加密算法;
- sigalg:指定SHA1withRSA签名算法;
- validity:指定证书有效期3650天;
- alias:指定证书在程序中引用的名称;
- dname:最重要的
CN=www.sample.com
指定了Common Name
,如果证书用在HTTPS中,这个名称必须与域名完全一致。
执行上述命令,JDK会在当前目录创建一个my.keystore
文件,并存储创建成功的一个私钥和一个证书,它的别名是mycert
。
以HTTPS协议为例,浏览器和服务器建立安全连接的步骤如下:
- 浏览器向服务器发起请求,服务器向浏览器发送自己的数字证书;
- 浏览器用操作系统内置的Root CA来验证服务器的证书是否有效,如果有效,就使用该证书加密一个随机的AES口令并发送给服务器;
- 服务器用自己的私钥解密获得AES口令,并在后续通讯中使用AES加密。
上述流程只是一种最常见的单向验证。如果服务器还要验证客户端,那么客户端也需要把自己的证书发送给服务器验证,这种场景常见于网银等。