非对称式加密(RSA算法案例)

文章介绍了非对称加密的概念,其中RSA作为示例展示了如何使用公钥和私钥进行加密和解密操作。在Java中,通过KeyPairGenerator生成密钥对,并利用Cipher进行加解密。非对称加密的特点在于其高安全性但较慢的运算速度。
摘要由CSDN通过智能技术生成

一、非对称式加密

非对称密码指的是加密和解密使用的不是相同的钥匙,用户A密钥加密后的信息只有他自己用解密密钥才能解密。如果知道了其中一个密钥,并不能计算另一个。因此公开一对密钥中的一个,并不会危害到另一个的秘密性质。我们将公开是密钥称为公钥,不公开的称为私钥。只有用同一个公钥-私钥才能进行正常的加密解密。常用的非对称算法有RSA、ECC等。以下是用RSA算法的案例。

二、RSA算法

例:
Bob想要发一个信息给AliceBob首先应该要想Alice索要她的公钥,然后用Alice提供的公钥信息加密,再把密文发给Alice,此文件只有用Alice私钥才能解开,又因为只有Alice才有私钥,除了Alice没有其他人能解开此密文

Java标准库中提供了RSA算法的实现,案例代码如下:

import java.math.BigInteger;
import java.security.GeneralSecurityException;
import java.security.KeyPair;
import java.security.KeyPairGenerator;
import java.security.PrivateKey;
import java.security.PublicKey;

import javax.crypto.Cipher;

// RSA
public class Work04 {
	public static void main(String[] args) throws Exception {
		// 明文:
		byte[] plain = "Alice, I love you~".getBytes("UTF-8");

		// 创建公钥/私钥对
		Human bob = new Human("Bob");
		Human alice = new Human("Alice");

		// 小明使用小红的公钥进行加密
		// 1.获取小红的公钥
		PublicKey alicePublicKey = alice.getPublicKey();
		System.out.println(String.format("Alice的public key(公钥): %x", new BigInteger(1, alicePublicKey.getEncoded())));

		// 2.使用公钥加密
		byte[] encrypted = bob.encrypt(plain, alicePublicKey);
		System.out.println(String.format("encrypted(加密): %x", new BigInteger(1, encrypted)));

		// 小红使用自己的私钥解密:
		// 1.获取小红的私钥,并输出
		PrivateKey alicePrivateKey = alice.getPrivateKey();
		System.out.println(String.format("Alice的private key(私钥): %x", new BigInteger(1, alicePrivateKey.getEncoded())));

		// 2.使用私钥解密
		byte[] decrypted = alice.decrypt(encrypted);
		System.out.println("decrypted(解密): " + new String(decrypted, "UTF-8"));
	}
}

// 用户类
class Human {
	// 姓名
	String name;

	// 私钥:
	PrivateKey privatekey;

	// 公钥:
	PublicKey publickey;

	// 构造方法
	public Human(String name) throws GeneralSecurityException {
		// 初始化姓名
		this.name = name;

		// 生成公钥/私钥对:
		KeyPairGenerator keyGen = KeyPairGenerator.getInstance("RSA");
		keyGen.initialize(1024);
		KeyPair keyPair = keyGen.generateKeyPair();
		this.privatekey = keyPair.getPrivate();
		this.publickey = keyPair.getPublic();
	}

	// 返回私钥
	public PrivateKey getPrivateKey() {
		return this.privatekey;
	}

	// 返回公钥
	public PublicKey getPublicKey() {
		return this.publickey;
	}

	// 用公钥加密
	public byte[] encrypt(byte[] message, PublicKey publickey) throws GeneralSecurityException {
		// 使用公钥进行初始化
		Cipher cipher = Cipher.getInstance("RSA");
		cipher.init(Cipher.ENCRYPT_MODE, publickey);
		return cipher.doFinal(message);
	}

	// 用私钥解密:
	public byte[] decrypt(byte[] input) throws GeneralSecurityException {
		// 使用私钥进行初始化
		Cipher cipher = Cipher.getInstance("RSA");
		cipher.init(Cipher.DECRYPT_MODE, this.privatekey);
		return cipher.doFinal(input);
	}
}

总结

非对称加密就是加密和解密使用不同的密钥,只有同一个公钥-私钥才能正常的加解密。
特点:非对称式加密算法的安全性非常高,但是运算速度非常的慢,比对称加密要慢得多。

RSA 是一种非对称加密算法,它可以用于数据加密和数字签名。下面是 RSA 加密算法的实现过程: 1. 选择两个大素数 p 和 q,并计算 n = p*q。 2. 计算欧拉函数 φ(n) = (p-1)*(q-1)。 3. 选择一个小于 φ(n) 的整数 e,使得 e 和 φ(n) 互质。 4. 计算 e 的模反元素 d,即满足 (d*e) mod φ(n) = 1 的整数 d。可以使用扩展欧几里得算法来计算 d。 5. 公钥为 (n, e),私钥为 (n, d)。 6. 加密时,将消息 m 转换成整数 M,然后计算密文 C = M^e mod n。 7. 解密时,将密文 C 计算出明文 M = C^d mod n。 下面是 Python 实现 RSA 加密算法的代码: ```python import random def gcd(a, b): if b == 0: return a else: return gcd(b, a % b) def extended_gcd(a, b): if b == 0: return (a, 1, 0) else: d, x, y = extended_gcd(b, a % b) return (d, y, x - (a // b) * y) def mod_inverse(a, m): d, x, y = extended_gcd(a, m) if d != 1: raise ValueError("No inverse exists") else: return x % m def generate_key_pair(p, q): n = p * q phi = (p - 1) * (q - 1) e = random.randrange(1, phi) while gcd(e, phi) != 1: e = random.randrange(1, phi) d = mod_inverse(e, phi) return ((n, e), (n, d)) def encrypt(msg, public_key): n, e = public_key m = int.from_bytes(msg.encode(), 'big') c = pow(m, e, n) return c.to_bytes((c.bit_length() + 7) // 8, 'big').decode() def decrypt(cipher, private_key): n, d = private_key c = int.from_bytes(cipher.encode(), 'big') m = pow(c, d, n) return m.to_bytes((m.bit_length() + 7) // 8, 'big').decode() # 选择两个大素数 p 和 q p = 61 q = 53 # 生成公钥和私钥 public_key, private_key = generate_key_pair(p, q) print("公钥:", public_key) print("私钥:", private_key) # 加密和解密 msg = "Hello, world!" cipher = encrypt(msg, public_key) print("密文:", cipher) plaintext = decrypt(cipher, private_key) print("明文:", plaintext) ``` 需要注意的是,由于 RSA 加密算法使用了大整数计算,因此在处理大数时需要使用适当的库来避免溢出等问题。在 Python 中,可以使用内置的 `pow()` 函数来计算幂取模,也可以使用第三方库(如 `gmpy2` )来进行大整数运算。
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值