117.info
人生若只如初见

怎么使用java加密文本

要使用Java来加密文本,可以使用Java加密标准库中的加密类。下面是一个使用AES算法加密文本的示例:

import javax.crypto.Cipher;
import javax.crypto.KeyGenerator;
import javax.crypto.SecretKey;
import javax.crypto.spec.SecretKeySpec;
import java.nio.charset.StandardCharsets;
import java.security.NoSuchAlgorithmException;
import java.util.Base64;

public class TextEncryptionExample {
    public static void main(String[] args) {
        try {
            // 生成AES密钥
            SecretKey secretKey = generateAESKey();

            // 明文
            String plaintext = "Hello, World!";

            // 加密
            String ciphertext = encrypt(plaintext, secretKey);

            System.out.println("密文: " + ciphertext);

            // 解密
            String decryptedText = decrypt(ciphertext, secretKey);

            System.out.println("解密后的明文: " + decryptedText);
        } catch (Exception e) {
            e.printStackTrace();
        }
    }

    // 生成AES密钥
    public static SecretKey generateAESKey() throws NoSuchAlgorithmException {
        KeyGenerator keyGenerator = KeyGenerator.getInstance("AES");
        keyGenerator.init(128);
        return keyGenerator.generateKey();
    }

    // 加密
    public static String encrypt(String plaintext, SecretKey secretKey) throws Exception {
        Cipher cipher = Cipher.getInstance("AES");
        cipher.init(Cipher.ENCRYPT_MODE, secretKey);
        byte[] encryptedBytes = cipher.doFinal(plaintext.getBytes(StandardCharsets.UTF_8));
        return Base64.getEncoder().encodeToString(encryptedBytes);
    }

    // 解密
    public static String decrypt(String ciphertext, SecretKey secretKey) throws Exception {
        Cipher cipher = Cipher.getInstance("AES");
        cipher.init(Cipher.DECRYPT_MODE, secretKey);
        byte[] encryptedBytes = Base64.getDecoder().decode(ciphertext);
        byte[] decryptedBytes = cipher.doFinal(encryptedBytes);
        return new String(decryptedBytes, StandardCharsets.UTF_8);
    }
}

这个示例使用了AES算法来加密和解密文本。首先,使用generateAESKey()方法生成一个AES密钥。然后,使用encrypt()方法加密明文,并将加密后的密文以Base64编码的形式返回。最后,使用decrypt()方法解密密文,得到原始的明文。

请注意,这个示例仅用于演示目的,并没有考虑安全性方面的问题。在实际应用中,需要根据具体需求选择合适的加密算法和密钥长度,并采取适当的安全措施。

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

推荐文章

  • java中进行两个txt文本文档的数据对比找不相同的字

    可以使用Java中的文件读取和字符串比较方法来实现两个txt文本文档的数据对比,找出其中不相同的字。
    首先,需要使用Java中的File类和BufferedReader类来读取...

  • 求quoted-printable编码的解码的java程序

    以下是一个简单的Java程序,用于对quoted-printable编码进行解码:import java.io.UnsupportedEncodingException;
    import java.nio.charset.StandardCharse...

  • java BigDecimal类型 比较大小

    在Java中,可以使用BigDecimal类的compareTo()方法来比较两个BigDecimal对象的大小。
    compareTo()方法返回一个整数值,表示两个BigDecimal对象的大小关系。...

  • Java Console.readLine()方法示例

    以下是一个示例代码,用于演示Java Console.readLine()方法的使用:
    import java.io.Console; public class ReadLineExample { public static void main(St...

  • Android中bindservice三个参数的作用是什么

    在Android中,bindService方法有三个参数,它们的作用如下: Intent对象:用于指定要绑定的服务的组件名称或者是应用程序包名。通过这个参数,可以确定要绑定的服...

  • python异常值检测常见方法有哪些

    Python中常见的异常值检测方法包括: 标准差和均值法:根据数据的均值和标准差来判断是否是异常值。
    箱线图法:根据数据的四分位数和箱线图来判断是否是异常...

  • mysql中怎么查看binlog日志内容

    在MySQL中,可以使用以下命令来查看binlog日志的内容: 首先,登录到MySQL服务器的命令行界面或者使用MySQL客户端工具(如MySQL Workbench)连接到MySQL服务器。...

  • php trim函数的作用是什么

    PHP的trim函数用于删除字符串的首尾空白字符(包括空格、制表符、换行符等)。
    它的作用包括: 删除字符串开头的空白字符。
    删除字符串末尾的空白字符...