在 Java 中加密和解密

2022-09-02 14:21:39

我想在Java文件中存储加密的密码。我在使用javax.crypto的解决方案中看到了,但问题是密钥是动态生成的,它是随机的。

然后,此密码将在运行时在 Java 程序中获取并解密。鉴于我将在文件中存储已加密的密码 - 我想在解密时获得正确的文本。

有没有办法告诉javax.crypto方法:

key = KeyGenerator.getInstance(algorithm).generateKey()

这可以替换为我自己的密钥,该密钥基于某些私钥生成一次吗?

任何人都可以向我指出一些关于如何做到这一点的资源吗?


答案 1

以下是使用javax.crypto库和apache commons编解码器库的解决方案,用于在Base64中进行编码和解码,我正在寻找:

import java.security.spec.KeySpec;
import javax.crypto.Cipher;
import javax.crypto.SecretKey;
import javax.crypto.SecretKeyFactory;
import javax.crypto.spec.DESedeKeySpec;
import org.apache.commons.codec.binary.Base64;

public class TrippleDes {

    private static final String UNICODE_FORMAT = "UTF8";
    public static final String DESEDE_ENCRYPTION_SCHEME = "DESede";
    private KeySpec ks;
    private SecretKeyFactory skf;
    private Cipher cipher;
    byte[] arrayBytes;
    private String myEncryptionKey;
    private String myEncryptionScheme;
    SecretKey key;

    public TrippleDes() throws Exception {
        myEncryptionKey = "ThisIsSpartaThisIsSparta";
        myEncryptionScheme = DESEDE_ENCRYPTION_SCHEME;
        arrayBytes = myEncryptionKey.getBytes(UNICODE_FORMAT);
        ks = new DESedeKeySpec(arrayBytes);
        skf = SecretKeyFactory.getInstance(myEncryptionScheme);
        cipher = Cipher.getInstance(myEncryptionScheme);
        key = skf.generateSecret(ks);
    }


    public String encrypt(String unencryptedString) {
        String encryptedString = null;
        try {
            cipher.init(Cipher.ENCRYPT_MODE, key);
            byte[] plainText = unencryptedString.getBytes(UNICODE_FORMAT);
            byte[] encryptedText = cipher.doFinal(plainText);
            encryptedString = new String(Base64.encodeBase64(encryptedText));
        } catch (Exception e) {
            e.printStackTrace();
        }
        return encryptedString;
    }


    public String decrypt(String encryptedString) {
        String decryptedText=null;
        try {
            cipher.init(Cipher.DECRYPT_MODE, key);
            byte[] encryptedText = Base64.decodeBase64(encryptedString);
            byte[] plainText = cipher.doFinal(encryptedText);
            decryptedText= new String(plainText);
        } catch (Exception e) {
            e.printStackTrace();
        }
        return decryptedText;
    }


    public static void main(String args []) throws Exception
    {
        TrippleDes td= new TrippleDes();

        String target="imparator";
        String encrypted=td.encrypt(target);
        String decrypted=td.decrypt(encrypted);

        System.out.println("String To Encrypt: "+ target);
        System.out.println("Encrypted String:" + encrypted);
        System.out.println("Decrypted String:" + decrypted);

    }

}

运行上述程序的结果如下:

String To Encrypt: imparator
Encrypted String:FdBNaYWfjpWN9eYghMpbRA==
Decrypted String:imparator

答案 2

对称密钥加密 :对称密钥使用相同的密钥进行加密和解密。这种类型的密码学的主要挑战是双方发送方和接收方之间交换密钥。

例:下面的示例使用对称密钥进行加密和解密算法,该算法可作为太阳的 JCE(Java Cryptography Extension) 的一部分提供。Sun JCE有两层,加密API层和提供者层。

DESData Encryption Standard)是一种流行的对称密钥算法。目前,DES已经过时,被认为是不安全的。三重 DES 和更强的 DES 变体。它是一个对称密钥块密码。还有其他算法,如BlowfishTwofishAESAdvanced Encryption Standard)。AES 是 DES 上最新的加密标准。

步骤:

  1. 添加安全提供程序 :我们使用的是 JDK 附带的 SunJCE 提供程序。
  2. 生成密钥 :使用和算法来生成密钥。我们正在使用(DESede是3DES实现的描述性名称:DESede = DES-Encrypt-Decrypt-Encrypt = Triple DES)。KeyGeneratorDESede
  3. 编码文本 :为了跨平台的一致性,使用 将纯文本编码为字节。UTF-8 encoding
  4. 加密文本 :使用 实例化,使用 密钥并对字节进行加密。CipherENCRYPT_MODE
  5. 解密文本 :使用 实例化,使用相同的密钥并解密字节。CipherDECRYPT_MODE

以上所有给定的步骤和概念都是相同的,我们只是替换算法。

import java.util.Base64;    
import javax.crypto.Cipher;  
import javax.crypto.KeyGenerator;   
import javax.crypto.SecretKey;  
public class EncryptionDecryptionAES {  
    static Cipher cipher;  

    public static void main(String[] args) throws Exception {
        /* 
         create key 
         If we need to generate a new key use a KeyGenerator
         If we have existing plaintext key use a SecretKeyFactory
        */ 
        KeyGenerator keyGenerator = KeyGenerator.getInstance("AES");
        keyGenerator.init(128); // block size is 128bits
        SecretKey secretKey = keyGenerator.generateKey();
        
        /*
          Cipher Info
          Algorithm : for the encryption of electronic data
          mode of operation : to avoid repeated blocks encrypt to the same values.
          padding: ensuring messages are the proper length necessary for certain ciphers 
          mode/padding are not used with stream cyphers.  
         */
        cipher = Cipher.getInstance("AES"); //SunJCE provider AES algorithm, mode(optional) and padding schema(optional)  

        String plainText = "AES Symmetric Encryption Decryption";
        System.out.println("Plain Text Before Encryption: " + plainText);

        String encryptedText = encrypt(plainText, secretKey);
        System.out.println("Encrypted Text After Encryption: " + encryptedText);

        String decryptedText = decrypt(encryptedText, secretKey);
        System.out.println("Decrypted Text After Decryption: " + decryptedText);
    }

    public static String encrypt(String plainText, SecretKey secretKey)
            throws Exception {
        byte[] plainTextByte = plainText.getBytes();
        cipher.init(Cipher.ENCRYPT_MODE, secretKey);
        byte[] encryptedByte = cipher.doFinal(plainTextByte);
        Base64.Encoder encoder = Base64.getEncoder();
        String encryptedText = encoder.encodeToString(encryptedByte);
        return encryptedText;
    }

    public static String decrypt(String encryptedText, SecretKey secretKey)
            throws Exception {
        Base64.Decoder decoder = Base64.getDecoder();
        byte[] encryptedTextByte = decoder.decode(encryptedText);
        cipher.init(Cipher.DECRYPT_MODE, secretKey);
        byte[] decryptedByte = cipher.doFinal(encryptedTextByte);
        String decryptedText = new String(decryptedByte);
        return decryptedText;
    }
}

输出:

Plain Text Before Encryption: AES Symmetric Encryption Decryption
Encrypted Text After Encryption: sY6vkQrWRg0fvRzbqSAYxepeBIXg4AySj7Xh3x4vDv8TBTkNiTfca7wW/dxiMMJl
Decrypted Text After Decryption: AES Symmetric Encryption Decryption

例:密码具有两种模式,它们是加密和解密。我们必须每次在设置模式后开始加密或解密文本。enter image description here


推荐