1

sun.misc。*パッケージを使用していたAESアルゴリズムを使用して暗号化および復号化するコードがあります。

後で私は、効果的なApacheのCommonsCodecを使用するというアドバイスに従うようにさせたパッケージのセットを使用するのは間違っていることに気付きました。

以前のコードは次のとおりです。

import java.security.*;
import java.security.spec.InvalidKeySpecException;
import javax.crypto.*;
import javax.crypto.spec.SecretKeySpec;


import sun.misc.*;

public class AESencrp {
private static final String ALGO = "AES";
private static final byte[] keyValue = 
    new byte[] { 'T', 'h', 'e', 'B', 'e', 's', 't','S', 'e', 'c', 'r','e', 't', 'K', 'e', 'y' };

public static String encrypt(String Data) throws Exception {
    Key key = generateKey();
    Cipher c = Cipher.getInstance(ALGO);
    c.init(Cipher.ENCRYPT_MODE, key);
    byte[] encVal = c.doFinal(Data.getBytes());
    String encryptedValue = new BASE64Encoder().encode(encVal);
    return encryptedValue;
}

public static String decrypt(String encryptedData) throws Exception {
    Key key = generateKey();
    Cipher c = Cipher.getInstance(ALGO);
    c.init(Cipher.DECRYPT_MODE, key);
    byte[] decordedValue = new BASE64Decoder().decodeBuffer(encryptedData);
    byte[] decValue = c.doFinal(decordedValue);
    String decryptedValue = new String(decValue);
    return decryptedValue;
}

private static Key generateKey() throws Exception {
    Key key = new SecretKeySpec(keyValue, ALGO);
    return key;
}



}

提案されたように、sun.miscを削除し、次の変更を行いました。

ApacheのコモンズコーデックでBASE64EncoderクラスをBase64に置き換えた後:

 public static String encrypt(String Data) throws Exception {
            Key key = generateKey();
            Cipher c = Cipher.getInstance(ALGO);
            c.init(Cipher.ENCRYPT_MODE, key);
            byte[] encVal = c.doFinal(Data.getBytes());
            byte[] encryptedValue = new Base64().encode(encVal);
            return new String(encryptedValue);
        }

私は次の行にぶつかったため、復号化の適切な代替手段を見つけることができません。

byte[] decordedValue = new BASE64Decoder().decodeBuffer(encryptedData);

decodeBuffer(String encodeData)の仕事をして、decodeValueのバイト配列を返すメソッドが見つかりません。

4

2 に答える 2

5

では、これはどうですか?

apache Base64 utilクラスの使用は、sun.misc.Base64Encoderの使用と似ています。Apache Base64クラスは、バイトと文字列間の変換を軽減する多くのオーバーロードメソッドを提供します。

byte[] encodedBytes  = Base64.encodeBase64(testString.getBytes());

String decodedString = new String(Base64.decodeBase64(encodedBytes));
于 2012-11-28T08:08:33.803 に答える
0
public class EncryptionDecrption {

    private static final String ALGO = "AES";
    private static final byte[] keyValue = new byte[]{'T', 'h', 'e', 'R', 'o', 'o', 'K', 'n', 'a', 't','E','n', 'i', 'r','i','n'};

    public EncryptionDecrption(){

    }

    public static String setEncryptedString(String data) throws Exception {
        Key key = getKey();
        Cipher cipher = Cipher.getInstance(ALGO);
        cipher.init(Cipher.ENCRYPT_MODE, key);
        byte[] encryptedValue = cipher.doFinal(data.getBytes("UTF-8"));

        return Base64.encodeToString(encryptedValue, Base64.DEFAULT);
    }

    public static String getDecryptedValue(String data) throws Exception {

        if(data != null) {
            Key key = getKey();
            Cipher cipher = Cipher.getInstance(ALGO);
            cipher.init(Cipher.DECRYPT_MODE, key);
            byte[] decodebyte = Base64.decode(data.getBytes("UTF-8"), Base64.DEFAULT);
            byte[] decValue = cipher.doFinal(decodebyte);

            return new String(decValue);
        }

        return null;
    }

    private static Key getKey() throws Exception {
        return new SecretKeySpec(keyValue, ALGO);
    }
}

それはAndroidで私のために働きます。

于 2017-04-17T14:57:04.053 に答える