2017-10-21 24 views
1

私はRC6アルゴリズムを使用しようとするだろうが、私はエラーがあります:私はRC6のするKeyGeneratorを入手するにはどうすればよいRC6キージェネレータは利用できません

RC6

するKeyGenerator利用できませんか?

スレッドの例外 "メイン" java.security.NoSuchAlgorithmException:RC6のKeyGenerator 利用できませんjavax.crypto.KeyGeneratorで(KeyGenerator.java:169) javax.crypto.KeyGenerator.getInstanceで(KeyGenerator.java:223 )RC6.main(RC6.java:16)

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

public class Main 
{ 
    private static String algorithm = "RC6"; 

    public static void main(String []args) throws Exception { 
     String toEncrypt = "The shorter you live, the longer you're dead!"; 

     System.out.println("Encrypting..."); 
     byte[] encrypted = encrypt(toEncrypt, "password"); 

     System.out.println("Decrypting..."); 
     String decrypted = decrypt(encrypted, "password"); 

     System.out.println("Decrypted text: " + decrypted); 
    } 

    public static byte[] encrypt(String toEncrypt, String key) throws Exception { 
     // create a binary key from the argument key (seed) 
     SecureRandom sr = new SecureRandom(key.getBytes()); 
     KeyGenerator kg = KeyGenerator.getInstance(algorithm); 
     kg.init(sr); 
     SecretKey sk = kg.generateKey(); 

     // create an instance of cipher 
     Cipher cipher = Cipher.getInstance(algorithm); 

     // initialize the cipher with the key 
     cipher.init(Cipher.ENCRYPT_MODE, sk); 

     // enctypt! 
     byte[] encrypted = cipher.doFinal(toEncrypt.getBytes()); 

     return encrypted; 
    } 

    public static String decrypt(byte[] toDecrypt, String key) throws Exception { 
     // create a binary key from the argument key (seed) 
     SecureRandom sr = new SecureRandom(key.getBytes()); 
     KeyGenerator kg = KeyGenerator.getInstance(algorithm); 
     kg.init(sr); 
     SecretKey sk = kg.generateKey(); 

     // do the decryption with that key 
     Cipher cipher = Cipher.getInstance(algorithm); 
     cipher.init(Cipher.DECRYPT_MODE, sk); 
     byte[] decrypted = cipher.doFinal(toDecrypt); 

     return new String(decrypted); 
    } 
} 

答えて

2

RC6でRC6.encrypt(RC6.java:27) で は、Oracleセキュリティプロバイダの一つで提供されるアルゴリズムではありません。プロバイダは、Cipherと実際にはKeyGeneratorの後ろにあるアルゴリズム実装を提供します。

これは、動作するはずクラスパスに弾む城プロバイダの.jarを追加した後:

static { 
    Security.addProvider(new BouncyCastleProvider()); 
} 

また、あなたのJREフォルダに無制限の暗号化ファイルをインストールする必要があります。

+0

こんにちはマーティン、あなたの答えをありがとうございます。はい、私はすでに無限の暗号をインストールしました。私はダウンロードしてBouncy Castleの瓶をここからhttps://www.bouncycastle.org/latest_releases.htmlから取り出し、次にSecurity.addProvider(新しいBouncyCastleProvider())をメインに配置します。しかし、今私は(復号化ラインで)このエラーがあります:**パッドブロックが破損**なぜですか?何か問題でも? – narraccino

+1

私は何が間違っているのか分かりません。これは間違ったキーまたは暗号文の変更を使用している可能性があります。私のシステム上で上記のコードは正しく動作します。 RC6はブロック暗号であることに注意してください。 JavaとBCプロバイダが安全ではないECBモードを好む傾向があるため、正しい*動作モード*とIVを使用することを確認する必要があります。しかし、それはあなたがそれが私が仮定して働かせた後に心配する何かです。 –

+0

私は気を散らされました、申し訳ありませんが、解読に別のkeyGeneratorがあります。そんなにマーティンありがとう! – narraccino

関連する問題