0

JCE API を使用して、DES アルゴリズムでファイルと文字列を暗号化および復号化したいのですが、独自のキーを提供したいのですが、例を探したところ、キーが次のように生成されていることがわかりました。

    import java.security.InvalidKeyException;
import java.security.NoSuchAlgorithmException;


import javax.crypto.BadPaddingException;
import javax.crypto.Cipher;
import javax.crypto.IllegalBlockSizeException;
import javax.crypto.KeyGenerator;
import javax.crypto.NoSuchPaddingException;
import javax.crypto.SecretKey;


public class JEncrytion
{    
    public static void main(String[] argv) {

        try{

            KeyGenerator keygenerator = KeyGenerator.getInstance("DES");
            SecretKey myDesKey = keygenerator.generateKey();
                    String key = "zertyuio";
            Cipher desCipher;

            // Create the cipher 
            desCipher = Cipher.getInstance("DES");

            // Initialize the cipher for encryption
            desCipher.init(Cipher.ENCRYPT_MODE, myDesKey);

            //sensitive information
            byte[] text = "No body can see me".getBytes();

            System.out.println("Text [Byte Format] : " + text);
            System.out.println("Text : " + new String(text));

            // Encrypt the text
            byte[] textEncrypted = desCipher.doFinal(text);

            System.out.println("Text Encryted : " + textEncrypted);

            // Initialize the same cipher for decryption
            desCipher.init(Cipher.DECRYPT_MODE, myDesKey);

            // Decrypt the text
            byte[] textDecrypted = desCipher.doFinal(textEncrypted);

            System.out.println("Text Decryted : " + new String(textDecrypted));

        }catch(NoSuchAlgorithmException e){
            e.printStackTrace();
        }catch(NoSuchPaddingException e){
            e.printStackTrace();
        }catch(InvalidKeyException e){
            e.printStackTrace();
        }catch(IllegalBlockSizeException e){
            e.printStackTrace();
        }catch(BadPaddingException e){
            e.printStackTrace();
        } 

    }
}

何か考えはありますか

前もって感謝します

4

2 に答える 2

3

クラスを見てくださいjavax.crypto.spec.SecretKeySpec。秘密鍵を保持するバイト配列を使用できます。

その後、インスタンスをCipher.initキーとしてメソッドに渡すことができます。

于 2012-12-31T09:20:43.537 に答える
2

DESの場合、 DESKeySpecから秘密鍵を作成できます。

SecretKey myDesKey =
    SecretKeyFactory.getInstance("DES").generateSecret(new DESKeyspec(key.getBytes()));
于 2012-12-31T09:31:24.620 に答える