117.info
人生若只如初见

java怎么实现AES的五种加密模式

在Java中,可以使用Java Cryptography Architecture (JCA)来实现AES的五种加密模式。以下是一些示例代码:

  1. 电子密码本模式 (Electronic Codebook Mode, ECB)
import javax.crypto.Cipher;
import javax.crypto.spec.SecretKeySpec;
import java.util.Base64;

public class AESExample {
    public static void main(String[] args) throws Exception {
        String plaintext = "Hello, World!";
        String key = "0123456789abcdef"; // 16字节的AES密钥

        SecretKeySpec secretKey = new SecretKeySpec(key.getBytes(), "AES");
        Cipher cipher = Cipher.getInstance("AES/ECB/PKCS5Padding");
        cipher.init(Cipher.ENCRYPT_MODE, secretKey);

        byte[] encryptedBytes = cipher.doFinal(plaintext.getBytes());
        String encryptedText = Base64.getEncoder().encodeToString(encryptedBytes);

        System.out.println("Encrypted Text: " + encryptedText);
    }
}
  1. 密码分组链接模式 (Cipher Block Chaining Mode, CBC)
import javax.crypto.Cipher;
import javax.crypto.spec.IvParameterSpec;
import javax.crypto.spec.SecretKeySpec;
import java.util.Base64;

public class AESExample {
    public static void main(String[] args) throws Exception {
        String plaintext = "Hello, World!";
        String key = "0123456789abcdef"; // 16字节的AES密钥
        String iv = "fedcba9876543210"; // 16字节的初始化向量

        SecretKeySpec secretKey = new SecretKeySpec(key.getBytes(), "AES");
        IvParameterSpec ivSpec = new IvParameterSpec(iv.getBytes());
        Cipher cipher = Cipher.getInstance("AES/CBC/PKCS5Padding");
        cipher.init(Cipher.ENCRYPT_MODE, secretKey, ivSpec);

        byte[] encryptedBytes = cipher.doFinal(plaintext.getBytes());
        String encryptedText = Base64.getEncoder().encodeToString(encryptedBytes);

        System.out.println("Encrypted Text: " + encryptedText);
    }
}
  1. 密文反馈模式 (Cipher Feedback Mode, CFB)
import javax.crypto.Cipher;
import javax.crypto.spec.IvParameterSpec;
import javax.crypto.spec.SecretKeySpec;
import java.util.Base64;

public class AESExample {
    public static void main(String[] args) throws Exception {
        String plaintext = "Hello, World!";
        String key = "0123456789abcdef"; // 16字节的AES密钥
        String iv = "fedcba9876543210"; // 16字节的初始化向量

        SecretKeySpec secretKey = new SecretKeySpec(key.getBytes(), "AES");
        IvParameterSpec ivSpec = new IvParameterSpec(iv.getBytes());
        Cipher cipher = Cipher.getInstance("AES/CFB/PKCS5Padding");
        cipher.init(Cipher.ENCRYPT_MODE, secretKey, ivSpec);

        byte[] encryptedBytes = cipher.doFinal(plaintext.getBytes());
        String encryptedText = Base64.getEncoder().encodeToString(encryptedBytes);

        System.out.println("Encrypted Text: " + encryptedText);
    }
}
  1. 输出反馈模式 (Output Feedback Mode, OFB)
import javax.crypto.Cipher;
import javax.crypto.spec.IvParameterSpec;
import javax.crypto.spec.SecretKeySpec;
import java.util.Base64;

public class AESExample {
    public static void main(String[] args) throws Exception {
        String plaintext = "Hello, World!";
        String key = "0123456789abcdef"; // 16字节的AES密钥
        String iv = "fedcba9876543210"; // 16字节的初始化向量

        SecretKeySpec secretKey = new SecretKeySpec(key.getBytes(), "AES");
        IvParameterSpec ivSpec = new IvParameterSpec(iv.getBytes());
        Cipher cipher = Cipher.getInstance("AES/OFB/PKCS5Padding");
        cipher.init(Cipher.ENCRYPT_MODE, secretKey, ivSpec);

        byte[] encryptedBytes = cipher.doFinal(plaintext.getBytes());
        String encryptedText = Base64.getEncoder().encodeToString(encryptedBytes);

        System.out.println("Encrypted Text: " + encryptedText);
    }
}
  1. 计数器模式 (Counter Mode, CTR)
import javax.crypto.Cipher;
import javax.crypto.spec.IvParameterSpec;
import javax.crypto.spec.SecretKeySpec;
import java.util.Base64;

public class AESExample {
    public static void main(String[] args) throws Exception {
        String plaintext = "Hello, World!";
        String key = "0123456789abcdef"; // 16字节的AES密钥
        String iv = "fedcba9876543210"; // 16字节的初始化向量

        SecretKeySpec secretKey = new SecretKeySpec(key.getBytes(), "

未经允许不得转载 » 本文链接:https://www.117.info/ask/fe69aAzsLAA5RDF0.html

推荐文章

  • java中 Scanner对象.nextInt() 方法什么意思

    Scanner对象的nextInt()方法是用来读取下一个整数输入的。
    它会等待用户输入一个整数,并将其作为方法的返回值返回。如果用户输入的不是一个有效的整数,ne...

  • java中的BigDecimal怎么使用

    在Java中使用BigDecimal,需要先导入java.math.BigDecimal类。 创建BigDecimal对象:
    可以使用以下方法来创建BigDecimal对象: 使用字符串作为参数:可以使...

  • Java中出现StackOverFlowError怎么解决

    当在Java中遇到StackOverflowError时,通常是由于递归调用的无限循环导致的。要解决此错误,可以采取以下一些措施: 检查递归方法的条件:确保递归方法的终止条件...

  • Java中serialVersionUID指的是什么意思

    在Java语言中,serialVersionUID是一个用于标识序列化类版本的静态变量。当一个类被序列化时,其serialVersionUID的值将与序列化数据一起存储。当反序列化时,系...

  • python字符串去重及排序的方法是什么

    Python中字符串去重及排序的方法有以下几种: 使用set()函数进行去重:将字符串转换为集合,集合具有去重的特性。然后再将集合转换为字符串。示例代码如下: s =...

  • Android中bindservice的三个参数怎么用

    在Android中使用bindService()方法绑定服务时,有三个参数需要传递: Intent对象:用于指定要绑定的服务。可以通过Intent构造函数或者Intent.createIntent()方法...

  • hibernate框架的特点有哪些

    Hibernate框架的特点包括: 对数据库的操作进行了封装,使得开发人员可以通过面向对象的方式进行数据库操作,而不需要直接编写SQL语句。
    提供了事务管理机制...

  • mysql怎么授权数据库给用户

    要授权数据库给用户,可以使用MySQL的GRANT语句。
    以下是授权数据库给用户的一般语法:
    GRANT 权限 ON 数据库名.表名 TO ‘用户名’@‘主机’;
    其...